-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "spotify-backend-ts",
"version": "1.0.0",
"main": "index.js",
"author": {
"name": "Jose Aburto",
"email": "[email protected]"
},
"homepage": "https://github.com/joseaburt/spotify-backend-ts.git#readme",
"bugs": {
"url": "https://github.com/joseaburt/spotify-backend-ts/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/joseaburt/spotify-backend-ts.git"
},
"license": "MIT",
"scripts": {
"test": "jest --watchAll --verbose",
"database:init": "node ./database/init.js",
"database:migrate": "node ./database/migrate.js",
"database:seed": "node ./database/seed.js"
},
"dependencies": {
"@joseaburt/http-error": "^0.1.1",
"@joseaburt/mysql2-query-builder": "^0.1.5",
"bcrypt": "^5.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.1",
"morgan": "^1.10.0",
"mysql2": "^3.5.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.4",
"@types/supertest": "^2.0.12",
"jest": "^29.6.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}