This repository has been archived by the owner on Jan 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
65 lines (65 loc) · 1.6 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
62
63
64
65
{
"name": "devhitch-api",
"version": "1.0.0",
"description": "DevHitch Rest API",
"main": "index.js",
"scripts": {
"start": "ts-node index.ts",
"start-dev": "tsc && node dist/index.js",
"dev": "nodemon --exec 'ts-node' index.ts",
"build": "tsc",
"prod": "node dist/index.js",
"clean": "rm -rf node_modules coverage dist .nyc_output",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Shehanka",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.6",
"@types/expect": "^24.3.0",
"@types/express": "^4.17.6",
"@types/mongodb": "^3.5.23",
"@types/mongoose": "^5.7.27",
"morgan": "^1.10.0",
"nodemon": "^2.0.4",
"ts-mocha": "^7.0.0",
"ts-nats": "^1.2.15",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.5"
},
"dependencies": {
"babel-eslint": "^10.1.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint": "^7.3.1",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.0.2",
"express-rate-limit": "^5.2.3",
"helmet": "^3.23.0",
"hpp": "^0.2.3",
"http-status": "^1.4.2",
"https": "^1.0.0",
"husky": "^4.2.5",
"jsonwebtoken": "^8.5.1",
"lint-staged": "^10.2.11",
"mongodb": "^3.5.9",
"mongoose": "^5.9.19",
"prettier": "^2.0.5",
"xss-clean": "^0.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts,json,md}": [
"prettier --write"
]
}
}