-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
150 lines (150 loc) · 4.81 KB
/
package.json
File metadata and controls
150 lines (150 loc) · 4.81 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "@pierreb-devkit/node",
"description": "Node - Boilerplate Back : Express, Jwt, Mongo, Sequelize (Beta) (Based on meanjs and riess.js)",
"version": "0.4.0",
"type": "module",
"keywords": [
"node",
"express",
"mongo",
"jwt",
"sequelize",
"stack",
"boilerplate"
],
"private": false,
"author": "https://github.com/pierreb-devkit/Node/graphs/contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pierreb-devkit/Node.git"
},
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"start": "node server.js",
"start:billing": "node --env-file-if-exists=.env server.js",
"dev": "node --watch server.js",
"dev:billing": "node --env-file-if-exists=.env --watch server.js",
"debug": "nodemon --inspect server.js",
"prod": "cross-env NODE_ENV=production node server.js --name=node",
"test": "cross-env NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --runInBand --testPathPatterns='unit'",
"test:all": "cross-env NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --runInBand",
"test:unit": "cross-env NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --runInBand --testPathPatterns='unit'",
"test:integration": "cross-env NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --runInBand --testPathPatterns='integration'",
"test:e2e": "cross-env NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --runInBand --testPathPatterns='e2e'",
"test:watch": "cross-env NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --watchAll",
"test:coverage": "cross-env NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --coverage --runInBand",
"lint": "eslint ./modules ./lib ./config ./scripts",
"seed:dev": "cross-env NODE_ENV=development node scripts/seed.js seed",
"seed:prod": "cross-env NODE_ENV=production node scripts/seed.js seed",
"seed:user": "node scripts/seed.js seed:user",
"seed:mongodump": "./scripts/db/mongodump.sh",
"seed:mongorestore": "node ./scripts/db/mongorestore.js",
"seed:mongodrop": "node scripts/seed.js drop",
"generate:sllCerts": "scripts/generate-ssl-certs.sh",
"lint:fix": "eslint --fix ./modules ./lib ./config ./scripts",
"format": "prettier --write .",
"snyk-protect": "snyk protect",
"commit": "npx cz",
"release:auto": "npx semantic-release"
},
"dependencies": {
"@casl/ability": "^6.8.0",
"@jest/globals": "^30.3.0",
"axios": "^1.13.6",
"bcrypt": "^6.0.0",
"bson": "^7.2.0",
"chalk": "^5.6.2",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"cross-env": "^10.1.0",
"enhanced-resolve": "^5.20.1",
"express": "^5.2.1",
"express-rate-limit": "^8.3.1",
"generate-password": "^1.7.1",
"glob": "^13.0.6",
"handlebars": "^4.7.8",
"helmet": "~8.1.0",
"inquirer": "^13.3.2",
"jest-environment-jsdom": "^30.3.0",
"js-base64": "^3.7.8",
"js-yaml": "^4.1.1",
"jsonwebtoken": "^9.0.3",
"lodash": "^4.17.23",
"lusca": "^1.7.0",
"method-override": "^3.0.0",
"mongoose": "^9.3.2",
"morgan": "^1.10.1",
"multer": "^2.1.1",
"nodemailer": "^8.0.3",
"nodemon": "^3.1.14",
"object-path": "^0.11.8",
"passport": "^0.7.0",
"passport-apple": "^2.0.2",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"sequelize": "^6.37.8",
"sharp": "^0.34.5",
"snyk": "^1.1303.2",
"stripe": "^20.4.1",
"supertest": "^7.2.2",
"swagger-ui-express": "^5.0.1",
"ts-jest": "^29.4.6",
"winston": "^3.19.0",
"zod": "^4.3.6",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"commitizen": "^4.3.1",
"cz-git": "^1.12.0",
"eslint": "10.1.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jest-cli": "30.3.0",
"prettier": "^3.8.1",
"semantic-release": "^25.0.3"
},
"release": {
"branches": [
{
"name": "master"
}
],
"ci": false,
"repositoryUrl": "https://github.com/pierreb-devkit/Node.git",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/github",
{
"successComment": false,
"failComment": false
}
],
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version} \n\n${nextRelease.notes}"
}
]
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"snyk": true
}