-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.16 KB
/
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
38
39
40
41
{
"name": "nodejs-example-app",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"build": "rm -rf ./dist && webpack --mode production",
"dev": "nodemon --exec babel-node ./src/index.js",
"database-initialization": "babel-node ./databaseInitialization.js",
"start": "node ./build/main.js",
"test": "eslint ./src"
},
"keywords": [],
"author": "Bedrich Schindler <[email protected]>",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.4",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"http-methods-enum": "^0.1.1",
"http-status-codes": "^1.3.1",
"jsonwebtoken": "^8.5.0",
"mongoose": "^5.4.19",
"mongoose-unique-validator": "^2.0.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.4",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"nodemon": "^1.18.10",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-node-externals": "^1.7.2"
}
}