-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 941 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 941 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
{
"name": "urbackend-monorepo",
"version": "0.10.0",
"private": true,
"license": "AGPL-3.0-only",
"workspaces": [
"apps/*",
"packages/*",
"tools/*",
"sdks/*"
],
"scripts": {
"dev": "concurrently -c \"cyan,magenta,yellow,green\" -n \"DASHBOARD,PUBLIC,WEB,CONSUMER\" \"npm run dev --workspace=dashboard-api\" \"npm run dev --workspace=public-api\" \"npm run dev --workspace=web-dashboard\" \"npm run dev --workspace=consumer\"",
"build": "npm run build --workspaces --if-present",
"prepare": "husky || node -e \"\""
},
"lint-staged": {
"apps/web-dashboard/**/*.{js,jsx}": [
"npm exec --workspace=web-dashboard eslint"
]
},
"devDependencies": {
"concurrently": "^9.2.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.5"
},
"dependencies": {
"@aws-sdk/lib-storage": "^3.1053.0",
"path": "^0.12.7"
},
"overrides": {
"rollup": "npm:@rollup/wasm-node"
}
}