-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.52 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
{
"name": "url-shortner",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"build": "node build.js",
"start": "pm2 restart ./ecosystem.config.js",
"dev": "env-cmd -f ./src/config/dev.env ts-node ./src/app.ts",
"lint": "pretty-quick && lint-staged"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.9",
"@types/mongoose": "^5.10.1",
"@types/morgan": "^1.9.2",
"@types/redis": "^2.8.28",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"env-cmd": "^10.1.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-minify": "^3.1.0",
"gulp-newer": "^1.4.0",
"gulp-preprocess": "^3.0.3",
"gulp-pretty-data": "^0.1.2",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"dependencies": {
"cors": "^2.8.5",
"crypto-random-string": "^3.3.0",
"express": "^4.17.1",
"log4js": "^6.3.0",
"mongoose": "^5.10.17",
"morgan": "^1.10.0",
"redis": "^3.0.2",
"validator": "^13.1.17"
},
"husky": {
"hooks": {
"pre-commit": "npm run-script lint"
}
},
"lint-staged": {
"*.{ts,js}": "eslint --fix"
}
}