-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.14 KB
/
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
24
25
26
27
28
29
30
31
32
{
"name": "crowd-wrap",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client": "cd client && npm run start",
"server": "cd server && npm run start",
"client-install": "cd client && npm install",
"server-install": "cd server && npm install",
"install": "npm run client-install && npm run server-install",
"build:client": "cd client && npx tsc --project tsconfig.json && npm run build",
"build:server": "cd server && npx tsc --project tsconfig.json",
"build": "npm run build:server && npm run build:client",
"serverAndClient": "concurrently 'npm run server' 'npm run client'",
"dev": "cd server/prisma && npx prisma generate && cd ../.. && npm run serverAndClient ",
"production": "pm2 start server/build/index.js && pm2 start client/app.config.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crowdWrap/crowd-wrap.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/crowdWrap/crowd-wrap/issues"
},
"dependencies": {
"concurrently": "^8.2.0"
}
}