-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 751 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 751 Bytes
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": "tessel_api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "cd client && yarn start",
"dev": "concurrently \"yarn run server\" \"yarn run client\"",
"heroku-postbuild": "YARN_CONFIG_PRODUCTION=false",
"build": "yarn install --prefix client && yarn build --prefix client"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"concurrently": "^3.5.1",
"dotenv": "^5.0.0",
"express": "^4.16.2",
"mongodb": "^3.0.2",
"mongoose": "^5.0.5",
"nodemon": "^1.14.12",
"request": "^2.83.0"
},
"engines": {
"node": "9.4.0",
"yarn": "1.3.2"
}
}