forked from foretold-app/foretold
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.13 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.13 KB
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
{
"name": "sps",
"version": "1.0.0",
"description": "Simple prediction service",
"main": "index.js",
"engines": {
"node": "~9.7.1",
"npm": ">=6.4.0"
},
"scripts": {
"client/install": "cd client && npm install && cd ..",
"client/build": "cd client && npm run build-t && cd ..",
"client/serve": "cd client && npm run serve && cd ..",
"server/install": "cd server && npm install && cd ..",
"server/serve": "cd server && npm run serve && cd ..",
"server/db:create": "cd server && npm run db:create && cd ..",
"db:create": "cd server && npm run db:create && cd ..",
"server/db:migrate": "cd server && npm run db:migrate cd ..",
"server/db:migrate:undo": "cd server && npm run db:migrate:undo cd ..",
"server/db:reset": "cd server && npm run db:reset && cd ..",
"server/db:seed": "cd server && npm run db:seed && cd ..",
"preinstall": "printenv",
"postinstall": "npm run server/install && npm run server/db:migrate; npm run client/install && npm run client/build"
},
"author": "",
"license": "MIT"
}