-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
23 lines (23 loc) · 853 Bytes
/
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
{
"name": "dashboard-monorepo",
"description": "Package for the dashboard monorepo",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"ci": "server/node_modules/.bin/run-s ci:*",
"ci:app": "cd app && npm run ci",
"ci:server": "cd server && npm run ci",
"scan": "server/node_modules/.bin/run-s scan:server scan:app",
"scan:app": "cd app && npm run scan",
"scan:server": "cd server && npm run build-api",
"setup": "server/node_modules/.bin/run-s setup:*",
"setup:app": "cd app && npm install",
"setup:docs": "cd docs && npm install",
"setup:server": "cd server && npm install",
"setup:storybook": "cd storybook && npm install",
"start": "server/node_modules/.bin/run-p start:*",
"start:app": "cd app && npm run start",
"start:server": "cd server && npm run dev"
}
}