-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
110 lines (110 loc) · 3.31 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "blog-service",
"version": "1.0.0",
"description": "Blog",
"author": "jkchao",
"license": "MIT",
"scripts": {
"format": "prettier --write \"**/*.ts\"",
"start": "cross-env NODE_ENV=development nodemon --config nodemon.json",
"debug": "cross-env NODE_ENV=development nodemon --config nodemon-debug.json",
"prestart:prod": "rm -rf dist && tsc -p './tsconfig.build.json'",
"start:prod": "node -r ./tsconfig-paths-bootstrap.js dist/main.js",
"start:hmr": "node dist/server",
"test": "jest",
"test:watch": "jest --watch",
"test:unit": "cross-env NODE_ENV=development jest --coverage --config ./jest-unit.config.js",
"webpack": "webpack --config webpack.config.js",
"lint": "tslint -c tslint.json -p tsconfig.json",
"precommit": "lint-staged",
"codecov": "codecov"
},
"lint-staged": {
"*.{js,json,ts,css,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@nestjs/common": "^5.0.0",
"@nestjs/core": "^5.0.0",
"@nestjs/graphql": "^5.4.0",
"@nestjs/mongoose": "^5.2.2",
"apollo-server-express": "^2.2.0",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"cache-manager": "^2.9.0",
"cache-manager-redis-store": "^1.5.0",
"chalk": "^2.4.1",
"class-transformer": "^0.1.9",
"class-validator": "^0.9.1",
"cli-spinner": "^0.2.8",
"commander": "^2.19.0",
"compression": "^1.7.3",
"csurf": "^1.9.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-rate-limit": "^3.1.0",
"fastify-formbody": "^2.0.0",
"geoip-lite": "^1.3.5",
"graphql": "^14.0.2",
"graphql-tools": "^4.0.3",
"helmet": "^3.13.0",
"inquirer": "^6.2.1",
"joi": "^13.6.0",
"jsonwebtoken": "^8.3.0",
"log4js": "^3.0.5",
"mongoose": "^5.3.2",
"mongoose-auto-increment": "^5.0.1",
"mongoose-paginate": "^5.0.3",
"nodemailer": "^4.7.0",
"nodemailer-smtp-transport": "^2.7.4",
"passport-jwt": "^4.0.0",
"qn": "^1.3.0",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.3.2",
"rxjs-compat": "^6.3.2"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-angular": "^7.5.0",
"@nestjs/testing": "^5.3.1",
"@types/compression": "0.0.36",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.0.39",
"@types/geoip-lite": "^1.1.29",
"@types/graphql": "^14.0.3",
"@types/helmet": "0.0.40",
"@types/jest": "^21.1.8",
"@types/joi": "^13.4.4",
"@types/jsonwebtoken": "^7.2.8",
"@types/mongoose": "^5.2.18",
"@types/mongoose-auto-increment": "^5.0.30",
"@types/mongoose-paginate": "^5.0.6",
"@types/node": "^9.3.0",
"@types/nodemailer": "^4.6.5",
"@types/nodemailer-smtp-transport": "^2.7.4",
"@types/redis": "^2.8.6",
"@types/supertest": "^2.0.4",
"codecov": "^3.1.0",
"cross-env": "^5.2.0",
"husky": "^1.0.0-rc.13",
"istanbul": "^0.4.5",
"jest": "^23.6.0",
"lint-staged": "^7.2.2",
"mockgoose-fix": "^7.3.6",
"nodemon": "^1.14.1",
"prettier": "^1.14.2",
"supertest": "^3.3.0",
"ts-jest": "^21.2.4",
"ts-loader": "^4.1.0",
"ts-node": "^4.1.0",
"tsconfig-paths": "^3.6.0",
"tslint": "5.3.2",
"typescript": "^2.9.2",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13",
"webpack-node-externals": "^1.6.0"
}
}