generated from TechLadies/nodejs-backend-starterkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.79 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
{
"name": "nodejs-backend-starterkit",
"version": "0.0.0",
"scripts": {
"start": "NODE_ENV=production node ./bin/www",
"dev": "NODE_ENV=development DEBUG=app:* nodemon --ignore '*.test.js' --watch src bin/www",
"test": "jest",
"test:watch": "jest --watch",
"jsfmt": "eslint \"src/**/*.js\" --fix",
"jslint": "eslint \"src/**/*.js\"",
"db:create": "./node_modules/.bin/sequelize db:create",
"db:migrate": "./node_modules/.bin/sequelize db:migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TechLadies/nodejs-backend-starterkit.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/TechLadies/nodejs-backend-starterkit/issues"
},
"homepage": "https://github.com/TechLadies/nodejs-backend-starterkit#readme",
"dependencies": {
"@sentry/node": "^5.7.1",
"bcrypt": "^3.0.6",
"connect-redis": "^4.0.2",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.0.0",
"express": "~4.16.1",
"express-session": "^1.16.2",
"hbs": "^4.0.5",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"morgan": "~1.9.1",
"passport": "^0.4.0",
"passport-github2": "^0.1.11",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4",
"pg": "^7.12.0",
"pg-hstore": "^2.3.3",
"redis": "^2.8.0",
"sequelize": "^5.19.0",
"sequelize-cli": "^5.5.0"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.14.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"supertest": "^4.0.2"
}
}