-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 2.33 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
{
"name": "fast-nest",
"version": "1.2.0",
"description": "Help You Initialize Your Nest Project",
"main": "main.ts",
"scripts": {
"start": "nodemon --exec \"ts-node\" main.ts",
"deploy": "tsc -p tsconfig.json && cross-env NODE_ENV=production node build/main.js",
"deploy:pm2": "tsc -p tsconfig.json && cross-env NODE_ENV=production pm2 start pm2.json",
"doc": "compodoc -p tsconfig.json -s",
"create": "ts-node _script/moduleCreator.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mykurisu/fast-nest.git"
},
"keywords": [
"nest.js",
"nodejs",
"typescript"
],
"author": "mykurisu",
"license": "ISC",
"bugs": {
"url": "https://github.com/mykurisu/fast-nest/issues"
},
"homepage": "https://github.com/mykurisu/fast-nest#readme",
"devDependencies": {
"@compodoc/compodoc": "^1.1.11",
"@types/compression": "^1.7.0",
"@types/express": "^4.17.2",
"@types/lodash": "^4.14.156",
"@types/lru-cache": "^5.1.0",
"cz-conventional-changelog": "^3.0.2",
"nodemon": "^1.19.4",
"standard-version": "^7.0.1",
"ts-node": "^8.5.2",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@nestjs/common": "^7.2.0",
"@nestjs/core": "^7.2.0",
"@nestjs/platform-express": "^6.10.1",
"@nestjs/serve-static": "^1.0.1",
"@types/blueimp-md5": "^2.7.0",
"@types/bytes": "^3.1.0",
"@types/cookie-parser": "^1.4.2",
"@types/crypto-js": "^3.1.44",
"@types/mongodb": "^3.3.11",
"@types/nodemailer": "^6.4.0",
"blueimp-md5": "^2.12.0",
"bytes": "^3.1.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"cos-nodejs-sdk-v5": "^2.5.14",
"cross-env": "^7.0.2",
"crypto-js": "^4.0.0",
"lodash": "^4.17.15",
"lru-cache": "^5.1.1",
"moment": "^2.24.0",
"mongodb": "^3.3.4",
"nodemailer": "^6.4.6",
"qcloudapi-sdk": "^0.2.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.3",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
},
"nodemonConfig": {
"watch": [
"modules/",
"common/",
"app.module.ts",
"main.ts"
],
"ignore": [
".git",
"node_modules/**/node_modules"
],
"ext": "ts"
}
}