-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.54 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": "file-uploader-cloud",
"version": "1.0.0",
"description": "File upload cloud storage",
"main": "index.ts",
"scripts": {
"postinstall": "prisma generate",
"dev": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/index.ts",
"build": "prisma generate && tsc && rm -rf ./dist/views && cp -r ./src/views/ ./dist/views",
"start": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FluffyRudy/file-uploader-cloud.git"
},
"author": "FluffyRudy",
"license": "ISC",
"bugs": {
"url": "https://github.com/FluffyRudy/file-uploader-cloud/issues"
},
"homepage": "https://github.com/FluffyRudy/file-uploader-cloud#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.0",
"@types/multer": "^1.4.12",
"@types/passport": "^1.0.17",
"@types/passport-local": "^1.0.38",
"@types/serve-favicon": "^2.5.7",
"nodemon": "^3.1.7",
"prisma": "^5.21.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@prisma/client": "^5.21.1",
"@quixo3/prisma-session-store": "^3.1.13",
"@supabase/ssr": "^0.4.1",
"@supabase/supabase-js": "^2.46.1",
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.1",
"express-session": "^1.18.1",
"express-validator": "^7.2.0",
"multer": "^1.4.5-lts.1",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"serve-favicon": "^2.5.0"
}
}