-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
64 lines (64 loc) · 1.71 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "express-mongoose-sqlize",
"description": "node, express, mongoose, sqlize",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon --exec babel-node -- index.js",
"lint": "eslint --ext .js .",
"lint:fix": "eslint --fix --ext .js ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/helabenkhalfallah/node-express-mongoose-sqlize.git"
},
"keywords": [
"express",
"mongoose",
"sqlize",
"passport",
"json web token"
],
"author": "hela ben khalfallah",
"license": "ISC",
"bugs": {
"url": "https://github.com/helabenkhalfallah/node-express-mongoose-sqlize/issues"
},
"homepage": "https://github.com/helabenkhalfallah/node-express-mongoose-sqlize#readme",
"dependencies": {
"bcrypt": "^4.0.1",
"body-parser": "^1.18.3",
"chai": "^4.1.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"dotenv": "^8.2.0",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.15",
"mongoose": "^5.9.13",
"morgan": "^1.10.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.0.1",
"pg": "^8.1.0",
"pg-hstore": "^2.3.2",
"sequelize": "^5.21.7",
"sinon": "^9.0.2",
"sinon-mongoose": "^2.1.1",
"winston": "^3.0.0",
"winston-daily-rotate-file": "^4.4.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"eslint": "^7.0.0",
"eslint-config-google": "^0.14.0",
"mocha": "^7.1.2",
"nodemon": "^1.17.5"
}
}