-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.85 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.85 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
{
"name": "api",
"version": "1.9.4",
"description": "API server powered by express-js",
"main": "api/index.js",
"type": "commonjs",
"scripts": {
"start": "node api/index.js",
"dev": "nodemon api/index.js",
"deploy": "gitcommit deploy; vercel && vercel --prod",
"commit": "gitcommit all",
"lint": "eslint --color api/"
},
"keywords": [
"api",
"express"
],
"author": "CasjaysDev <git-admin@casjaysdev.pro> (https://api.casjay.coffee)",
"license": "MIT",
"dependencies": {
"abort-controller": "^3.0.0",
"axios": "^1.13.3",
"bcryptjs": "^3.0.3",
"cheerio": "^1.2.0",
"compression": "^1.8.1",
"cors": "^2.8.6",
"cron-parser": "^5.5.0",
"cronstrue": "^3.9.0",
"diff": "^8.0.3",
"dotenv": "^16.6.1",
"ejs": "^4.0.1",
"express": "^5.2.1",
"express-ejs-layouts": "^2.5.1",
"express-rate-limit": "^8.2.1",
"express-validator": "^7.3.1",
"helmet": "^8.1.0",
"highlight.js": "^11.11.1",
"http-proxy-middleware": "^3.0.5",
"isomorphic-dompurify": "^2.35.0",
"jsonwebtoken": "^9.0.3",
"marked": "^4.3.0",
"mongoose": "^9.1.5",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"node-datetime": "^2.1.2",
"node-fetch": "^2.7.0",
"qrcode": "^1.5.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.0.10",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"globals": "^17.1.0",
"nodemon": "^3.1.11",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20.x"
}
}