-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.06 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "node-stripe-subscription",
"version": "0.0.1",
"description": "NODE JS - boilerplate for stripe subscription",
"main": "index.js",
"private": true,
"engines": {
"node": ">=12.18.3",
"npm": ">=6.14.4"
},
"scripts": {
"start": "run-p -c dev-**",
"lint-fix": "eslint --color --quiet --fix --ext .js .",
"dev-start": "cross-env NODE_PATH=. nodemon index.js",
"dev-prettier": "npx prettier . --write",
"dev-lint-fix": "nodemon -e js -x npm run lint-fix",
"sequelize": "cross-env NODE_PATH=. npx sequelize-cli",
"test": "cross-env NODE_ENV=test jest --testTimeout=10000 --forceExit --detectOpenHandles --coverage --runInBand"
},
"keywords": [
"express",
"node",
"sequelize",
"pg",
"postgres",
"es6",
"REST",
"API",
"docker",
"swagger",
"eslint",
"boilerplate",
"jest",
"stripe"
],
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"chance": "^1.1.6",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-validation": "^3.0.5",
"faker": "^4.1.0",
"helmet": "^4.0.0",
"http-status": "^1.4.2",
"joi": "^17.2.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"log4js": "^6.3.0",
"method-override": "^3.0.0",
"moment": "^2.27.0",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"pg": "^8.3.0",
"pg-hstore": "^2.3.3",
"sequelize": "^6.3.4",
"stripe": "^8.84.0",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"cross-env": "^7.0.2",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"factory-girl": "^5.0.4",
"jest": "^26.2.2",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"sequelize-cli": "^6.2.0",
"supertest": "^4.0.2"
}
}