-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 974 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
35
36
37
{
"name": "vue-gallery-server",
"version": "0.1.0",
"description": "Server of Node.js and MongoDB for vue-gallery",
"main": "src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon --exec babel-node src/app.js",
"heroku-postbuild": "yarn install",
"start": "babel-node src/app.js",
"build": "yarn install && yarn start"
},
"author": "Lavrentev Dmitriy",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"moment": "^2.24.0",
"mongodb": "^3.1.13",
"mongoose": "^5.4.19"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.4",
"babel-loader": "^8.0.5",
"babel-plugin-module-resolver": "^3.2.0",
"nodemon": "^1.18.10",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
},
"engines": {
"node": "10.x"
}
}