-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
{
"name": "music",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js --inspect --ignore public/ ",
"start": "node server.js",
"createAdmin": "node ./scripts/makeAdmin.js",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@prisma/adapter-pg": "^5.16.1",
"@prisma/client": "^5.17.0",
"@supabase/supabase-js": "^2.44.2",
"body-parser": "^1.20.2",
"cloudinary": "^2.3.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"formidable": "^3.5.1",
"googleapis": "^139.0.0",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/node": "^20.14.9",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"globals": "^15.8.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"nodemon": "^3.1.3",
"pino-pretty": "^11.2.1",
"prettier": "3.3.3",
"prisma": "^5.17.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}