-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "ciaocine",
"version": "0.0.0",
"private": true,
"bin": {
"seed": "./bin/seed.ts"
},
"scripts": {
"start": "cd ./build && node server.js",
"build": "tsc",
"dev": "vite server.ts",
"test": "vitest run",
"seed": "ts-node bin/seed.ts",
"seed:clean": "node bin/removeShowtimes.js",
"seed:refresh": "yarn seed:clean && yarn seed"
},
"dependencies": {
"axios": "^0.26.1",
"bcrypt": "^5.0.1",
"cloudinary": "^1.29.0",
"connect-mongo": "^4.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-jwt": "^6.1.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6",
"mongodb": "^4.1.0",
"morgan": "^1.10.0",
"multer": "^2.0.0-rc.3",
"multer-storage-cloudinary": "^4.0.0"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/multer": "^1.4.7",
"@types/node": "^18.15.0",
"@types/readline-sync": "^1.4.4",
"nodemon": "^2.0.15",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vitest": "^0.29.3"
}
}