-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "c0upons",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"dev": "turbo run dev",
"dev:web": "turbo run dev --filter=@c0upons/web",
"dev:cli": "turbo run dev --filter=@c0upons/cli",
"build": "turbo run build",
"start": "pnpm --filter @c0upons/web run start",
"build:web": "turbo run build --filter=@c0upons/web",
"build:cli": "turbo run build --filter=@c0upons/cli",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"test": "turbo run test",
"setup:hooks": "git config core.hooksPath .githooks && echo 'Git hooks configured'"
},
"devDependencies": {
"@types/node": "^22",
"turbo": "^2.3.0",
"typescript": "^5.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/profullstack/c0upons.git"
},
"author": "Profullstack, Inc.",
"license": "MIT"
}