-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 869 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 869 Bytes
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
{
"name": "dirigera-web",
"private": true,
"engines": {
"node": "^26.0.0",
"npm": ">11.0.0"
},
"volta": {
"node": "26.7.0"
},
"scripts": {
"browserslist-update": "npx update-browserslist-db@latest",
"build": "npm run build -w frontend",
"check-updates": "ncu -i -w",
"prepare": "husky || true",
"start": "npm run start -w backend",
"test": "npm run test -w backend"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"npm-check-updates": "^23.1.0",
"prettier": "^3.9.6"
},
"workspaces": [
"backend",
"frontend"
],
"lint-staged": {
"*.{ts,tsx,js,css,md,json,yml}": "prettier --write"
},
"allowScripts": {
"@apollo/protobufjs@1.2.7": true,
"esbuild@0.28.1": true,
"fsevents@2.3.3": true,
"storybook-addon-remix-react-router@6.1.0": true
}
}