-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
42
43
44
45
46
{
"name": "ShoeStore",
"version": "1.0.0",
"description": "App for shoes store",
"main": "index.js",
"scripts": {
"dev": "nodemon server --exec babel-node --config .nodemonrc.json"
},
"keywords": [
"node",
"express",
"mognodb"
],
"author": "Pece Krstevski",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.6",
"config": "^3.2.2",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"helmet": "^3.20.0",
"joi": "^14.3.1",
"joi-objectid": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mongodb": "^3.3.0-beta2",
"mongoose": "^5.6.7",
"morgan": "^1.9.1",
"winston": "^3.2.1",
"winston-mongodb": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/node": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/preset-env": "7.4.5",
"@babel/register": "7.4.4",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.6",
"babel-plugin-istanbul": "^5.1.4",
"babel-polyfill": "6.26.0",
"nodemon": "^1.19.1"
}
}