forked from REllEK-IO/bilbo-backends
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 949 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
{
"name": "nyt_search",
"version": "1.0.1",
"main": "index.js",
"repository": {},
"homepage": "https://blooming-anchorage-40883.herokuapp.com/",
"license": "MIT",
"engines": {
"node": "6.9.1",
"npm": "5.0.0"
},
"config": {
"unsafe-perm": true
},
"dependencies": {
"bootstrap-slider": "^9.8.0",
"concurrently": "^3.5.0",
"rangeslider.js": "^2.3.0",
"rimraf": "^2.5.4",
"session": "^0.1.0"
},
"scripts": {
"build": "concurrently \"cd client && npm run build\" \"cd server && npm run build\"",
"clean": "concurrently \"rimraf node_modules\" \"cd client && rimraf node_modules build\" \"cd server && rimraf node_modules build\"",
"heroku-postbuild": "npm run build",
"install": "(cd client && npm install) && (cd server && npm install)",
"start": "concurrently \"cd server && npm start\" \"cd client && npm start\"",
"start:prod": "cd server && npm run start:prod"
}
}