-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.44 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
{
"name": "ozxkdev-backend",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"type": "module",
"dependencies": {
"bcrypt": "^5.1.0",
"cloudinary": "^1.35.0",
"cors": "^2.8.5",
"dicer": "^0.3.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.7.0",
"gridfs-stream": "^1.1.1",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"mongoose": "^6.7.3",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"multer-gridfs-storage": "^5.0.2",
"nodemailer": "^6.9.1",
"pre-commit": "^1.2.2",
"rimraf": "^4.4.0"
},
"scripts": {
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"start": "nodemon src/index.ts",
"build": "rimraf dist && tsc",
"ts.check": "tsc --project tsconfig.json",
"add-build": "git add dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"pre-commit": [
"ts.check",
"build",
"add-build"
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/lodash": "^4.14.191",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.18",
"@types/nodemailer": "^6.4.7",
"concurrently": "^7.6.0",
"nodemon": "^2.0.20",
"typescript": "^4.9.3"
}
}