-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
144 lines (144 loc) · 4.19 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "nest-cnode",
"version": "0.0.2",
"description": "",
"author": "",
"license": "MIT",
"scripts": {
"nest": "nest",
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "cross-env NODE_ENV=development nest start",
"start:dev": "cross-env NODE_ENV=development nest start --watch",
"start:debug": "cross-env NODE_ENV=development nest start --debug --watch",
"start:prod": "cross-env NODE_ENV=production node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "cross-env NODE_ENV=test jest",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"test:cov": "cross-env NODE_ENV=test jest --coverage",
"test:debug": "cross-env NODE_ENV=test node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "cross-env NODE_ENV=test jest --config ./test/jest-e2e.json",
"release": "standard-version",
"publish": "standard-version && git push --follow-tags origin master"
},
"dependencies": {
"@nestjs-modules/mailer": "^1.3.11",
"@nestjs/common": "^6.11.11",
"@nestjs/config": "^0.2.4",
"@nestjs/core": "^6.11.11",
"@nestjs/mongoose": "^6.3.1",
"@nestjs/passport": "^6.2.0",
"@nestjs/platform-express": "^6.10.14",
"@typegoose/typegoose": "^6.4.0",
"bcryptjs": "^2.4.3",
"cache-manager": "^3.3.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.11.0",
"connect-flash": "^0.1.1",
"connect-redis": "^4.0.4",
"cookie-parser": "^1.4.4",
"cross-env": "^7.0.0",
"csurf": "^1.11.0",
"data2xml": "^1.3.4",
"dotenv": "^8.2.0",
"ejs-mate": "^3.0.0",
"express-session": "^1.17.0",
"ioredis": "^4.16.0",
"joi": "^14.3.1",
"loader": "^2.1.1",
"loader-builder": "^2.7.0",
"loader-connect": "^1.0.1",
"markdown-it": "^11.0.0",
"moment": "^2.27.0",
"mongoose": "^5.9.3",
"nodemailer": "^6.4.4",
"nodemailer-smtp-transport": "^2.7.4",
"passport": "^0.4.1",
"passport-github": "^1.1.0",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"rxjs": "^6.5.4",
"utility": "^1.16.3",
"validator": "^13.1.1",
"xmlbuilder": "^15.1.1",
"xss": "^1.0.8"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@nestjs/cli": "^6.13.2",
"@nestjs/schematics": "^6.8.1",
"@nestjs/testing": "^6.10.14",
"@types/express": "^4.17.2",
"@types/express-session": "^1.17.0",
"@types/jest": "25.1.2",
"@types/multer": "^1.4.2",
"@types/node": "^13.1.6",
"@types/passport": "^1.0.3",
"@types/supertest": "^2.0.8",
"@types/dotenv": "^8.2.0",
"@types/glob": "^7.1.1",
"@types/ioredis": "^4.14.8",
"@types/joi": "^14.3.4",
"@types/mongoose": "^5.7.3",
"@types/nodemailer": "^6.4.0",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"husky": "^4.2.3",
"jest": "^24.9.0",
"lint-staged": "^10.0.8",
"prettier": "^1.18.2",
"standard-version": "^8.0.1",
"supertest": "^4.0.2",
"ts-jest": "25.2.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.7.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"ci": {
"version": "8",
"services": "redis-server, mongodb"
},
"repository": {
"type": "git",
"url": "https://github.com/jiayisheji/nest-cnode.git"
},
"bugs": {
"url": "https://github.com/jiayisheji/nest-cnode/issues"
},
"engines": {
"node": ">=8.9.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"{src,apps,libs,test}/**/*.{ts}": [
"npm run lint",
"git add"
]
}
}