-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 811 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 811 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
31
32
{
"name": "back_wik",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "10.14.1",
"npm": "6.4.1"
},
"scripts": {
"start": "node index",
"server": "nodemon index",
"client-install": "npm install --prefix client",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm run client-install && npm run build --prefix client"
},
"author": "Alexander",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.0",
"moment": "^2.24.0",
"mongoose": "^5.5.9",
"morgan": "^1.9.1",
"wtf_wikipedia": "^7.3.0"
},
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.19.0"
}
}