-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
32 lines (32 loc) · 1017 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
24
25
26
27
28
29
30
31
32
{
"name": "vote-app",
"version": "1.0.0",
"description": "",
"main": "api/index.js",
"engines": {
"node": "9.3.0"
},
"scripts": {
"i": "cd web && npm i && cd ../api && npm i",
"start": "concurrent \"cd web && npm start\" \"cd api && npm start\"",
"----heroku-scripts----": "",
"postinstall": "cross-env SERVICE_URL=https://va0.herokuapp.com npm run build_web && node copy-build.js",
"build_web": "cd web && npm i && npm run build",
"heroku": "cd api && npm i && npm run start_heroku"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MikhailSemichev/vote-app.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MikhailSemichev/vote-app/issues"
},
"homepage": "https://github.com/MikhailSemichev/vote-app#readme",
"dependencies": {
"concurrently": "^3.5.1",
"cross-env": "^5.1.3",
"fs-extra": "^5.0.0"
}
}