-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.89 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.89 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "devit",
"version": "0.0.0",
"description": "",
"scripts": {
"setup": "pnpm i && pnpm run build:data-ops",
"build:data-ops": "pnpm run --filter data-ops build",
"dev:user-application": "pnpm run --filter user-application dev",
"deploy:staging:user-application": "pnpm run build:data-ops && pnpm run --filter user-application deploy:staging",
"deploy:production:user-application": "pnpm run build:data-ops && pnpm run --filter user-application deploy:production",
"dev:data-service": "pnpm run --filter data-service dev",
"deploy:staging:data-service": "pnpm run build:data-ops && pnpm run --filter data-service deploy:staging",
"deploy:production:data-service": "pnpm run build:data-ops && pnpm run --filter data-service deploy:production",
"seed:dev": "pnpm run --filter data-ops seed:dev",
"seed:staging": "pnpm run --filter data-ops seed:staging",
"seed:production": "pnpm run --filter data-ops seed:production",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"lint:ci": "biome ci .",
"types": "pnpm run build:data-ops && pnpm run --filter data-service --filter user-application types",
"init-project": "tsx scripts/init-project.ts",
"knip": "knip",
"deps": "taze",
"deps:update": "taze -w",
"deps:major": "taze major",
"deps:major:update": "taze major -w",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.32.1",
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.19.15",
"@vitest/coverage-v8": "^4.1.0",
"knip": "^5.86.0",
"semantic-release": "^25.0.3",
"taze": "^19.10.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}