-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.06 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.06 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
{
"name": "node-server-boilerplate",
"version": "1.0.0",
"description": "a simple but scalable server to build, share, and manage content",
"main": "script.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node lib/main.js",
"start-example": "npm run start -- --k <private-key>"
},
"engines": {
"node": ">=12"
},
"author": "digimbyte",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"commander": "^11.1.0",
"eventemitter3": "^5.0.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"firebase": "^10.7.1",
"firebase-admin": "^12.0.0",
"helmet": "^7.1.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"nano": "^10.1.3",
"node-schedule": "^2.1.1",
"socket.io": "^4.7.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.2",
"@types/node-schedule": "^2.1.5",
"@types/socket.io": "^3.0.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.2"
}
}