-
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": "voxlog-server",
"version": "0.0.1",
"main": "index.ts",
"scripts": {
"dev": "ts-node-dev -r tsconfig-paths/register --exit-child --respawn --transpile-only src/index.ts",
"build": "ts-node-dev -r tsconfig-paths/register --respawn src/index.ts"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^9.0.0",
"@types/luxon": "^3.2.0",
"@types/node": "^18.8.2",
"@types/spotify-api": "^0.0.19",
"@types/spotify-web-api-node": "^5.0.7",
"@types/string-similarity": "^4.0.0",
"prisma": "^4.5.0",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.0",
"tsoa": "^4.1.3",
"typescript": "^4.8.4"
},
"dependencies": {
"@prisma/client": "^4.5.0",
"axios": "^1.1.3",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"cuid": "^2.1.8",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"luxon": "^3.1.0",
"musicbrainz-api": "^0.10.2",
"spotify-web-api-node": "^5.0.2",
"string-similarity": "^4.0.4",
"xml-js": "^1.6.11",
"zod": "^3.20.2"
},
"prisma": {
"schema": "src/lib/database/schema.prisma",
"seed": "ts-node src/lib/database/seed.ts"
}
}