-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"dependencies": {
"@popperjs/core": "^2.11.8",
"bcrypt": "^5.1.1",
"bootstrap": "^5.3.3",
"config": "^3.3.12",
"cookie-parser": "^1.4.6",
"express": "^4.21.0",
"express-async-handler": "^1.2.0",
"express-jwt": "^8.4.1",
"express-session": "^1.18.0",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.2",
"mime": "^4.0.4",
"multer": "^1.4.5-lts.1",
"nanoid": "^5.0.7",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"passport-oauth2": "^1.8.0",
"sqlite3": "^5.1.7",
"supertest": "^7.0.0",
"winston": "^3.14.2"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"standard": "^17.1.0"
},
"scripts": {
"start": "node index.mjs",
"test": "node --test --test-reporter=spec",
"test:only": "node --test --test-only --test-reporter=spec",
"ver": "echo $npm_package_version",
"lint": "eslint . --ext .mjs",
"lint:fix": "eslint . --ext .mjs --fix"
},
"version": "0.9.5",
"engine": {
"node": ">=20.0.0"
}
}