-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.65 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
{
"name": "nodejs-typescript-skeleton",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "ts-node-dev --respawn src/index.ts",
"dev": "nodemon --watch src src/index.ts",
"build": "tsc",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"pretty": "prettier --write \"src/**/*.ts\""
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express-mongo-sanitize": "^2.1.0",
"@types/morgan": "^1.9.4",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.10.0",
"nodemon": "^2.0.22",
"prettier": "^2.5.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.17",
"@types/helmet": "^4.0.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.7.15",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"email-validator": "^2.0.4",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"helmet": "^6.1.3",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"mongoose": "^7.1.0",
"morgan": "^1.10.0",
"redis": "^4.6.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2",
"validator": "^13.9.0",
"xss-clean": "^0.1.1"
}
}