forked from NovaGrids/VaultDAO
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 784 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 784 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
{
"scripts": {
"prepare": "husky",
"backend:dev": "npm --prefix backend run dev",
"backend:build": "npm --prefix backend run build",
"backend:typecheck": "npm --prefix backend run typecheck",
"backend:test": "npm --prefix backend run test",
"backend:lint": "npm --prefix backend run lint",
"typecheck": "npm --prefix frontend run typecheck",
"build:frontend": "npm --prefix frontend run build"
},
"dependencies": {
"html2canvas": "^1.4.1",
"recharts": "^3.7.0"
},
"devDependencies": {
"@types/node": "^25.3.0",
"@types/recharts": "^1.8.29",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.6.2"
},
"lint-staged": {
"backend/**/*.{ts,js,mjs,cjs,json,md}": [
"prettier --write"
]
}
}