-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
{
"name": "reserve.utsa",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "node --env-file=.env ./bin/www.js",
"lint": "npx eslint .",
"lint:fix": "eslint . --fix",
"test": "node --env-file=.env.test --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"jest": {
"transform": {}
},
"dependencies": {
"bootstrap": "^5.3.3",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"debug": "~2.6.9",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"express-validator": "^7.2.1",
"http-errors": "~1.6.3",
"mongodb": "^6.12.0",
"morgan": "~1.10.0",
"nodemailer": "^6.9.16",
"npm": "^10.9.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^10.0.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@types/cors": "^2.8.17",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.2.2",
"eslint-plugin-promise": "^6.6.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"supertest": "^7.0.0"
}
}