-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 906 Bytes
/
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
{
"dependencies": {
"axios": "^0.24.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-validator": "^6.14.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^6.1.5",
"socket.io": "^4.4.1",
"winston": "^3.3.3"
},
"devDependencies": {
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"nodemon": "^2.0.15",
"prettier": "2.5.1"
},
"lint-staged": {
"**/*.{js,jsx,json,tsx}": [
"prettier --write"
]
},
"name": "ticket-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"author": "",
"license": "ISC",
"description": ""
}