-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.18 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
{
"name": "SSL tools",
"version": "1.0.0",
"type": "module",
"description": "",
"main": "server.js",
"scripts": {
"prod": "node server.js",
"dev": "nodemon server.js",
"debug": "ndb app.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"multer": "^1.4.5-lts.1",
"node-openssl-cert": "^0.1.42",
"pug": "^3.0.2"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-n": "^16.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-security": "^1.7.1",
"jest": "^29.7.0",
"morgan": "^1.10.0",
"prettier": "^3.1.0",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=20.0.0"
}
}