-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.59 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
{
"name": "vista-safari-server",
"version": "1.0.0",
"main": "./dist/index.js",
"license": "MIT",
"scripts": {
"start": "node ./dist/app.js",
"dev": "nodemon src/app.ts",
"build": "rm -rf dist && tsc",
"lint:check": "eslint . --ext .js,.ts --config .eslintrc-config.js",
"lint:fix": "eslint . --ext .js,.ts --fix --config .eslintrc-config.js",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"prepare": "husky install",
"up": "bash upgrade.sh"
},
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.9.0",
"helmet": "^7.0.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.0",
"node-cron": "^3.0.2",
"validator": "^13.11.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/hpp": "^0.2.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.5",
"@types/node": "^20.5.8",
"@types/validator": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.0",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"husky": {
"hooks": {
"pre-commit": ".husky/pre-commit"
}
}
}