-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 3.16 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
{
"name": "blog",
"version": "0.0.0",
"description": "blog",
"author": "",
"license": "MIT",
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "export NODE_ENV=development && nodemon",
"start:test": "export NODE_ENV=test && nodemon",
"start:debug": "export NODE_ENV=development && nodemon --config nodemon-debug.json",
"prestart:prod": "rimraf dist && tsc",
"start:prod": "export NODE_ENV=production && node dist/main.js",
"start:hmr": "node dist/server",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json",
"webpack": "webpack --config webpack.config.js"
},
"dependencies": {
"@angular/animations": "^8.0.0",
"@angular/cdk": "^8.0.0",
"@angular/common": "^8.0.0",
"@angular/compiler": "^8.0.0",
"@angular/core": "^8.0.0",
"@angular/flex-layout": "^8.0.0-beta.26",
"@angular/forms": "^8.0.0",
"@angular/http": "^7.2.15",
"@angular/material": "^8.0.0",
"@angular/platform-browser": "^8.0.0",
"@angular/platform-browser-dynamic": "^8.0.0",
"@angular/platform-server": "^8.0.0",
"@angular/router": "^8.0.0",
"@nestjs/common": "^5.1.0",
"@nestjs/core": "^5.1.0",
"@nestjs/ng-universal": "^0.1.1",
"@nestjs/swagger": "^2.5.1",
"@nestjs/typeorm": "^5.2.2",
"@nguniversal/express-engine": "^7.1.0",
"@nguniversal/module-map-ngfactory-loader": "^7.1.1",
"@sendgrid/mail": "^6.4.0",
"bootstrap": "^4.2.1",
"codemirror": "^5.47.0",
"config": "^3.0.1",
"core-js": "^3.1.3",
"dotenv": "^6.1.0",
"express-rate-limit": "^5.0.0",
"hammerjs": "^2.0.8",
"helmet": "^3.13.0",
"joi": "^14.0.0",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"mysql": "^2.16.0",
"ng2-file-upload": "^1.3.0",
"ngx-image-cropper": "^1.3.10",
"ngx-markdown": "^8.0.1",
"pace-js": "^1.0.2",
"prismjs": "^1.15.0",
"qiniu": "^7.2.1",
"qiniu-js": "^2.5.4",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.5.2",
"ts-loader": "^6.0.2",
"typeorm": "^0.2.7",
"uuid": "^3.3.2",
"zone.js": "^0.9.1"
},
"devDependencies": {
"@nestjs/testing": "^5.1.0",
"@types/express": "^4.16.0",
"@types/express-rate-limit": "^3.3.0",
"@types/jest": "^23.3.1",
"@types/joi": "^14.0.1",
"@types/lodash": "^4.14.116",
"@types/node": "^10.12.0",
"@types/supertest": "^2.0.5",
"jest": "^23.5.0",
"nodemon": "^1.18.3",
"prettier": "^1.14.2",
"rimraf": "^2.6.2",
"supertest": "^3.1.0",
"ts-jest": "^23.1.3",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.5.0",
"tslint": "5.12.1",
"typescript": "^3.1.3",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-node-externals": "^1.7.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}