-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 4.14 KB
/
package.json
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "orion",
"description": "[IJ] Orion",
"repository": "https://github.com/mission-apprentissage/tjp-pilotage.git",
"version": "0.0.0",
"author": "IJ",
"license": "LICENSED",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=20",
"npm": "please-use-yarn"
},
"workspaces": [
"ui",
"server",
"shared"
],
"dependencies": {
"@sentry/cli": "^2.37.0",
"@vitejs/plugin-react": "^4.3.4",
"dotenv": "^16.4.5",
"eslint-plugin-react": "^7.37.1",
"global": "4.4.0",
"husky": "^9.1.6"
},
"scripts": {
"setup": ".bin/product init:env",
"dev": "yarn services:start; yarn foreach:parallel run dev",
"cli": "yarn workspace server cli",
"seed": ".bin/product seed:apply",
"deploy": ".bin/product deploy",
"build": "yarn foreach:seq run build",
"migrations:status": "yarn cli migrations:status",
"migrations:latest": "yarn cli migrations:latest",
"migrations:up": "yarn cli migrations:up",
"migrations:create": "yarn cli migrations:create",
"migrations:down": "yarn cli migrations:down",
"server:dev": "yarn workspace server dev",
"ui:dev": "yarn workspace ui dev",
"services:start": "docker compose up --remove-orphans -d --wait",
"services:stop": "docker compose down",
"services:clean": "yarn services:stop; docker system prune --volumes",
"seed:update": ".bin/product seed:update",
"lint": "eslint --ignore-path .gitignore --cache --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "yarn lint --fix",
"release": "semantic-release",
"release:interactive": ".bin/product release:interactive",
"release:manual": ".bin/product release:manual",
"release:candidate": ".bin/product release:candidate",
"postinstall": "husky",
"talisman:add-exception": "yarn node-talisman --githook pre-commit -i",
"test": "vitest",
"test:ci": "yarn test --run --silent",
"test:ci:coverage": "yarn test:ci --coverage.include='ui' --coverage.include='server/src' --coverage.provider='v8' --coverage.enabled --coverage.all --coverage.exclude='**/tests' --coverage.exclude='**/.next'",
"test:watch": "vitest --watch",
"typecheck": "yarn foreach:parallel run typecheck",
"typecheck:ci": "yarn foreach:ci run typecheck",
"vault:edit": ".bin/product vault:edit",
"foreach:seq": "yarn workspaces foreach -Av --exclude orion",
"foreach:parallel": "yarn foreach:seq -pi",
"foreach:ci": "yarn foreach:seq -p",
"import": "yarn import:files && yarn import:tables && yarn import:ij && yarn import:formations",
"import:files": "yarn cli importFiles",
"import:tables": "yarn cli importTables",
"import:ij": "yarn cli importIJ",
"import:formations": "yarn cli importFormations",
"migrate:up": "yarn cli migrateDB",
"migrate:down": "yarn cli migrateDownDB"
},
"devDependencies": {
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@dword-design/eslint-plugin-import-alias": "^5.1.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"@vitest/coverage-v8": "^0.34.2",
"commander": "^12.1.0",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.15",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-esm-import": "^0.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-mocha": "10.2.0",
"eslint-plugin-n": "^17.11.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint-plugin-zod": "^1.4.0",
"exceljs": "^4.4.0",
"lint-staged": "^15.2.10",
"node-talisman": "^1.29.11",
"semantic-release": "22.0.12",
"semantic-release-slack-bot": "4.0.2",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^2.0.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --ignore-path .gitignore --cache --fix"
],
"yarn.lock": [
"yarn dedupe"
]
}
}