-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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
45
46
47
48
49
50
51
52
53
{
"version": "0.0.1",
"main": "build/main.js",
"license": "UNLICENSED",
"scripts": {
"build": "tsc --build",
"start": "node .",
"start:dev": "nodemon -q",
"start:prod": "dotenv -v NODE_ENV=production -- node .",
"format": "prettier --write \"src/**/*.{ts,cjs,mjs,js}\""
},
"devDependencies": {
"@swc/core": "^1.6.13",
"@types/detect-port": "^1.3.5",
"@types/http-errors": "^2.0.4",
"@types/morgan": "^1.9.9",
"@types/ms": "^0.7.34",
"@types/node": "^20.14.10",
"@types/qs": "^6.9.15",
"nodemon": "^3.1.4",
"prettier": "^3.3.2",
"prisma": "^5.16.2",
"spotify-types": "^1.0.7",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/http-proxy": "^9.5.0",
"@fastify/middie": "^8.3.1",
"@fastify/static": "^7.0.4",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^4.0.0",
"@jmrl23/redis-store": "^2.3.4",
"@prisma/client": "^5.16.2",
"axios": "^1.7.2",
"cache-manager": "^5.7.1",
"colorette": "^2.0.20",
"detect-port": "^1.6.1",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.4.2",
"env-var": "^7.5.0",
"fastify": "^4.28.1",
"fastify-plugin": "^4.5.1",
"glob": "^11.0.0",
"http-errors": "^2.0.0",
"json-schema-to-ts": "^3.1.0",
"morgan": "^1.10.0",
"ms": "^2.1.3",
"qs": "^6.12.3",
"winston": "^3.11.0"
}
}