-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.35 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
{
"name": "vyatha-services",
"version": "1.0.0",
"description": "API Services for Vyatha",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon index.js",
"dev": "nodemon index.js",
"build": "npm install",
"lint": "eslint . --ext .js --fix",
"pretty": "prettier --write .",
"precommit": "lint-staged",
"prepare": "simple-git-hooks"
},
"keywords": [],
"author": "UC Maintainers and Developers",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"moment-timezone": "^0.5.43",
"mongoose": "^7.4.5",
"morgan": "^1.10.0",
"nodemailer": "^6.9.7",
"nodemon": "^3.0.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"eslint": "^8.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-check-file": "^2.6.2",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"simple-git-hooks": "^2.9.0"
},
"simple-git-hooks": {
"pre-commit": "npm run precommit"
},
"lint-staged": {
"*.(js)": [
"npm run lint",
"npm run pretty"
]
}
}