-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 850 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 850 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
{
"name": "root",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"bootstrap:share": "lerna bootstrap --scope @clobbr/share",
"build": "npm run build-api && npm run build-cli && npm run build-ui && npm run build-share",
"build-cli": "cd ./packages/cli && npm run build",
"build-api": "cd ./packages/api && npm run build",
"build-ui": "cd ./packages/ui && npm run build",
"build-share": "cd ./packages/share && npm run build",
"publish": "npm run build && lerna publish"
},
"devDependencies": {
"husky": "^6.0.0",
"lerna": "^4.0.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@clobbr/api": "^1.16.1",
"axios": "^1.7.9",
"react-chartjs-2": "^5.2.0"
}
}