-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 2.33 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 2.33 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
{
"name": "noctification2",
"private": true,
"version": "1.0.0",
"workspaces": [
"apps/api",
"apps/web",
"packages/apr-core",
"packages/poste-kml-core"
],
"scripts": {
"setup": "node scripts/setup.cjs",
"prepare:deploy": "node scripts/prepare-deploy.cjs",
"prepare:local-lan": "node scripts/prepare-local-lan.cjs",
"check:deploy": "node scripts/check-deploy.cjs",
"dev": "node scripts/dev.cjs",
"dev:api": "npm run dev --workspace @noctification/api",
"dev:web": "npm run dev --workspace @noctification/web",
"build:core": "npm run build --workspace @noctification/apr-core && npm run build --workspace @noctification/poste-kml-core",
"build:api": "npm run build --workspace @noctification/api",
"build:web": "npm run build --workspace @noctification/web",
"build": "npm run build --workspace @noctification/api && npm run build --workspace @noctification/web",
"test:core": "npm run test --workspace @noctification/apr-core && npm run test --workspace @noctification/poste-kml-core",
"test": "npm run test:core && npm run test:api && npm run test:web",
"lint": "npm run lint --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"test:api": "npm run test --workspace=apps/api",
"test:web": "npm run test --workspace=apps/web",
"check:core": "npm run typecheck --workspace @noctification/apr-core && npm run typecheck --workspace @noctification/poste-kml-core && npm run test --workspace @noctification/apr-core && npm run test --workspace @noctification/poste-kml-core",
"check:api": "npm run lint --workspace @noctification/api && npm run typecheck --workspace @noctification/api && npm run test --workspace @noctification/api",
"check:web": "npm run lint --workspace @noctification/web && npm run typecheck --workspace @noctification/web && npm run test --workspace @noctification/web",
"check:fast": "npm run lint && npm run typecheck && npm run test:core",
"validate:debian": "bash ops/scripts/validate-debian-login.sh",
"deploy:debian": "bash ops/scripts/deploy-debian.sh"
},
"devDependencies": {
"eslint": "^8.57.1",
"@typescript-eslint/parser": "^8.32.1",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"eslint-plugin-react-hooks": "^5.2.0"
},
"overrides": {
"path-to-regexp": "0.1.13"
}
}