-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1010 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
33
34
{
"name": "backend",
"version": "1.0.0",
"description": "API RESTFull Gasti",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client": "npm run start --prefix client",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"start": "node server.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "Aldana Castro",
"license": "ISC",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.19.0",
"concurrently": "^5.3.0",
"connect-multiparty": "^2.2.0",
"create-symlink": "^1.0.0",
"cross-env": "^7.0.2",
"express": "^4.17.1",
"mongoose": "^5.9.27",
"nodemon": "^2.0.4",
"react-scripts": "^3.4.1",
"serve": "^11.3.2",
"validator": "^13.1.1"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}