-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.8 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.8 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
51
52
53
54
55
56
57
58
59
{
"name": "nps-platform",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"deploy:staging": "wrangler deploy --env staging",
"db:schema": "wrangler d1 execute nps-platform --local --file=./sql/schema.sql",
"db:seed": "wrangler d1 execute nps-platform --local --file=./sql/seed.sql",
"db:setup": "pnpm run db:schema && pnpm run db:seed",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format:check": "biome format .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit && tsc --noEmit -p widget/tsconfig.json && tsc --noEmit -p e2e/tsconfig.json",
"test": "vitest run",
"test:widget": "vitest run --config widget/vitest.config.ts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"knip": "knip",
"test:e2e": "playwright test",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/h13/nps-platform.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"private": true,
"packageManager": "pnpm@10.30.3",
"bugs": {
"url": "https://github.com/h13/nps-platform/issues"
},
"homepage": "https://github.com/h13/nps-platform#readme",
"lint-staged": {
"*.ts": [
"biome check --write"
]
},
"devDependencies": {
"@biomejs/biome": "2.4.5",
"@cloudflare/vitest-pool-workers": "0.12.18",
"@cloudflare/workers-types": "4.20260305.0",
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@playwright/test": "^1.58.2",
"@vitest/coverage-istanbul": "^3.2.4",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"knip": "^5.85.0",
"lint-staged": "^16.3.2",
"typescript": "5.9.3",
"vitest": "3.2.4",
"wrangler": "4.69.0"
}
}