-
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.79 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.79 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": "nap",
"version": "0.15.0",
"private": true,
"type": "module",
"license": "AGPL-3.0-or-later",
"engines": {
"node": ">=24"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"prelint": "npm run build --workspace @nap/shared",
"lint": "eslint .",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run test:toolchain && npm run test --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"format": "prettier --write .",
"format:check": "prettier --check .",
"dev:api": "npm run dev --workspace @nap/api",
"dev:web": "npm run dev --workspace @nap/web",
"prepare": "husky",
"licenses": "node scripts/check-licenses.mjs",
"db:setup:test": "node scripts/setup-databases.mjs test",
"db:migrate:admin": "npm run db:migrate:admin --workspace @nap/api",
"db:migrate:cell": "npm run db:migrate:cell --workspace @nap/api",
"db:reset:admin": "npm run db:reset:admin --workspace @nap/api --",
"db:reset:cell": "npm run db:reset:cell --workspace @nap/api --",
"db:bootstrap": "npm run db:bootstrap --workspace @nap/api --",
"db:setup:dev": "node scripts/setup-databases.mjs development",
"test:toolchain": "npm run build --workspace @nap/api && vitest run --config vitest.config.mjs",
"db:access": "npm run db:access --workspace @nap/api --"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.4",
"globals": "^17.11.0",
"husky": "^9.1.7",
"license-checker-rseidelsohn": "^5.0.1",
"prettier": "^3.9.6",
"typescript": "~6.0.3",
"typescript-eslint": "^8.67.0",
"vitest": "^4.1.11"
}
}