-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 927 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 927 Bytes
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
{
"name": "muffins",
"version": "2.0.0",
"type": "module",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.21.1",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.46",
"node-fetch": "^3.3.2",
"pg": "^8.13.1",
"range_check": "^1.4.0",
"sha.js": "^2.4.11",
"socket.io": "^4.8.1"
},
"scripts": {
"start": "pm2 start pm2.json",
"preview": "node ./build/server.js",
"start:dev": "tsx src/server.ts",
"prebuild": "rimraf build",
"build": "tsc"
},
"author": "WentTheFox (https://went.tf)",
"private": true,
"devDependencies": {
"@types/express": "^4.17.21",
"@types/lodash": "^4.17.13",
"@types/node": "^20.17.8",
"@types/node-fetch": "^3.0.3",
"@types/pg": "^8.11.10",
"@types/range_check": "^1.4.0",
"@types/sha.js": "^2.4.4",
"pm2": "^5.4.3",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}