-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.24 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.24 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
{
"name": "spotijam-api",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch \"server/**\" --ext \"ts,json\" --ignore \"server/**/*.spec.ts\" --exec \"npx tsx server/index.ts\"",
"start": "node dist/index.js",
"build": "tsc && node addExtension.js",
"ts-typecheck": "tsc --noEmit"
},
"author": "Ballon2zipetteCORP",
"license": "ISC",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.10.2",
"@types/ws": "^8.5.13",
"nodemon": "^3.1.9",
"typescript": "^5.7.2"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"@fastify/helmet": "^13.0.0",
"@fastify/multipart": "^9.0.1",
"@fastify/rate-limit": "^10.2.1",
"@fastify/static": "^8.0.3",
"@fastify/websocket": "^11.0.1",
"express": "^4.21.2",
"fastify": "^5.2.0",
"fastify-websocket": "^4.3.0",
"file-type": "^19.6.0",
"jsonwebtoken": "^9.0.2",
"mime-types": "^2.1.35",
"node-fetch": "^3.3.2",
"query-string": "^9.1.1",
"redis": "^4.0.0-rc.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"uuid": "^11.0.3",
"winston": "^3.17.0",
"ws": "^8.18.0"
}
}