-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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
{
"name": "anssi-nis2",
"version": "0.0.0",
"description": "Mon Espace NIS 2",
"main": "index.js",
"workspaces": [
"commun/core",
"anssi-nis2-api",
"anssi-nis2-ui"
],
"engines": {
"node": ">= 18",
"npm": ">= 9"
},
"scripts": {
"lint": "eslint \"./anssi-nis2-*/{src,apps,libs,test}/**/*.ts\" --fix",
"prettier": "npm run prettier --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"install": "npm run build --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"start": "npm run start:prod -w anssi-nis2-api",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betagouv/anssi-nis2.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/betagouv/anssi-nis2/issues"
},
"homepage": "https://github.com/betagouv/anssi-nis2#readme",
"devDependencies": {
"@fast-check/vitest": "^0.0.8",
"@golevelup/ts-jest": "^0.4.0",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"sass": "^1.72.0",
"typescript": "^5.1.6"
},
"lint-staged": {
"./anssi-nis2-*/{src,apps,libs,test}/**/*.(ts|tsx)": [
"eslint --cache --fix",
"prettier -l -w"
]
},
"dependencies": {
"@sentry/node": "^7.119.1",
"@sentry/react": "^7.119.1",
"@sentry/types": "^7.99.0",
"ts-node": "^10.9.2"
}
}