generated from TechLadies/nodejs-backend-starterkit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.86 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
{
"name": "nodejs-backend-starterkit",
"version": "0.0.0",
"scripts": {
"start": "NODE_ENV=production node ./bin/www",
"dev": "cross-env NODE_ENV=development PORT=3001 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:drop": "./node_modules/.bin/sequelize db:drop",
"db:migrate": "./node_modules/.bin/sequelize db:migrate",
"db:reset": "npm run db:drop && npm run db:create && npm run db:migrate",
"db:seed": "./node_modules/.bin/sequelize db:seed:all"
},
"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": {
"bcrypt": "^3.0.7",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"csv-stringify": "^5.3.3",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-session": "^1.16.2",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.9.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^7.14.0",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.2",
"sequelize-cli": "^5.5.1"
},
"devDependencies": {
"cross-env": "^6.0.3",
"eslint": "^6.6.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"supertest": "^4.0.2"
}
}