-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "api-template",
"version": "1.0.0",
"description": "Scalable folder stucture",
"main": "index.js",
"engines": {
"node": ">=8.9",
"npm": ">=3.10.0"
},
"engineStrict": true,
"scripts": {
"test": "jest --verbose",
"test:watch": "jest --watchAll",
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"coverage": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"keywords": [],
"author": "Ashok Dey <[email protected]> (http://ashokdey.in)",
"license": "MIT",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.4.19",
"morgan": "^1.9.1",
"mysql2": "^1.6.4",
"sequelize": "^4.42.0",
"uuid": "^3.3.2",
"validator": "^10.11.0"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^24.3.1",
"nodemon": "^1.18.9"
}
}