-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
73 lines (73 loc) · 2.32 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
66
67
68
69
70
71
72
73
{
"name": "covid-node-backend",
"version": "0.0.0",
"private": true,
"scripts": {
"clean:build": "rm -rf ./dist && tsc",
"prod": "yarn clean:build && NODE_ENV=production pm2 start dist/main.js -i max -- --production",
"development": "yarn clean:build && NODE_ENV=development pm2 start dist/main.js -i max -- --production",
"start": "yarn clean:build && pm2 start dist/main.js -i max -- --production",
"prod:deploy": "tsc && yarn pm2 restart all",
"build": "tsc",
"watch-ts": "tsc -w",
"dev": "yarn clean:build && NODE_ENV=local nodemon"
},
"dependencies": {
"axios": "^0.19.2",
"compression": "^1.7.4",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "8.2.0",
"express": "~4.16.1",
"express-basic-auth": "^1.2.0",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"joi": "^14.3.1",
"lusca": "^1.6.1",
"mongoose": "5.9.5",
"morgan": "~1.9.1",
"node-cron": "^2.0.3",
"pm2": "^4.2.3",
"winston": "3.2.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/mongoose-paginate": "5.0.8",
"@types/swagger-jsdoc": "3.0.2",
"@types/swagger-ui-express": "^4.1.2",
"@types/winston": "2.4.4",
"concurrently": "5.1.0",
"nodemon": "2.0.2",
"swagger-jsdoc": "4.0.0",
"swagger-ui-express": "^4.1.3",
"ts-node": "8.7.0",
"tsconfig-paths": "3.9.0",
"typescript": "3.8.3",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.6",
"@types/express": "4.17.3",
"@types/joi": "^14.3.4",
"@types/lusca": "^1.6.1",
"@types/mongoose": "5.7.6",
"@types/node-cron": "^2.0.3",
"@types/typescript": "2.0.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^2.0.4"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}