-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.25 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
47
48
49
50
51
52
{
"name": "starterpack_node_mongo_rest_api",
"description": "Rest API Starter Pack for Nodejs and Mongodb",
"main": "app.js",
"engines": {
"node": "10.16.3"
},
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"lint": "eslint . --ext .js || true",
"lint:fix": "eslint . --ext .js --fix || true",
"migrate": "sequelize db:migrate"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"co": "^4.6.0",
"config": "^3.3.6",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"fs": "0.0.1-security",
"get-parameter-names": "^0.3.0",
"glob": "^7.1.4",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.5",
"morgan": "^1.9.1",
"mysql2": "1.7.0",
"newman": "^5.2.4",
"nodemon": "^1.19.3",
"parse-duration": "^1.0.0",
"path": "^0.12.7",
"sequelize": "^6.6.5",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"sequelize-cli": "^5.5.1"
},
"repository": {
"type": "git",
"url": ""
}
}