-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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
53
54
55
56
57
58
59
60
61
{
"name": "video-motion-backend",
"version": "1.0.0",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"start": "nodemon src/index.ts",
"build": "rimraf api && tsc",
"ts.check": "tsc --project tsconfig.json",
"add-build": "git add api",
"test": "echo \"Error: no test specified\" && exit 1"
},
"pre-commit": [
"ts.check",
"build",
"add-build"
],
"dependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.6",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.41.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"mongoose-aggregate-paginate-v2": "^1.0.7",
"multer": "^1.4.5-lts.1",
"swagger-jsdoc": "^6.2.8",
"swagger-themes": "^1.2.30",
"swagger-ui-express": "^5.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@babel/preset-typescript": "^7.23.3",
"@babel/register": "^7.22.15",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongoose": "^5.11.97",
"@types/mongoose-aggregate-paginate-v2": "^1.0.12",
"@types/multer": "^1.4.12",
"@types/node": "^20.10.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"nodemon": "^3.0.2",
"pre-commit": "^1.2.2",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}