-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
121 lines (121 loc) · 4.34 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
{
"name": "presentable",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "Malik Evans",
"main": "dist/server/main.js",
"scripts": {
"build:book:docs": "gitbook build book dist/book",
"build:browser:bundle": "ng build --extract-css",
"build:pdf": "gitbook pdf book dist/presentable.pdf",
"build:server-and-browser:bundle": "concurrently \" npm run build:server:bundle \" \" npm run build:browser:bundle \" ",
"build:server:bundle": "tsc -p tsconfig.json",
"build:source-and-book:docs": "concurrently \" npm run build:book:docs \" \" npm run build:source:docs \" ",
"build:source:docs": "./node_modules/.bin/compodoc src -c .compodoc.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"serve:all": "concurrently \" npm run serve:source-and-book:docs \" \" npm run serve:dev \" ",
"serve:book:docs": "gitbook serve book dist/book",
"serve:browser:bundle": "browser-sync start --config browser-sync.js",
"serve:dev": "concurrently \" npm run serve:server:bundle \" \" npm run serve:browser:bundle \" \" npm run watch:server-and-browser:bundle \"",
"serve:dev:full": "concurrently \" npm run serve:dev \" \" npm run serve:source-and-book:docs \" ",
"serve:server:bundle": "nodemon",
"serve:source-and-book:docs": "concurrently \" npm run serve:source:docs \" \" npm run serve:book:docs \" ",
"serve:source:docs": "./node_modules/.bin/compodoc src -c .compodoc.json -w -s",
"prestart:prod": "rimraf dist && tsc",
"test": "jest",
"test:cov": "jest --coverage",
"test:watch": "jest --watch",
"watch:browser:bundle": "ng build --extract-css --watch",
"watch:server-and-browser:bundle": "concurrently \" npm run watch:server:bundle\" \" npm run watch:browser:bundle\" ",
"watch:server:bundle": "tsc -p tsconfig.json -w"
},
"jest": {
"coverageDirectory": "../coverage",
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testEnvironment": "node",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
}
},
"dependencies": {
"@angular/animations": "^6.1.0",
"@angular/cdk": "~7.0.3",
"@angular/common": "^6.1.0",
"@angular/compiler": "^6.1.0",
"@angular/core": "^6.1.0",
"@angular/forms": "^6.1.0",
"@angular/http": "^6.1.0",
"@angular/material": "^7.0.3",
"@angular/platform-browser": "^6.1.0",
"@angular/platform-browser-dynamic": "^6.1.0",
"@angular/platform-server": "^7.0.3",
"@angular/router": "^6.1.0",
"@nestjs/common": "^5.1.0",
"@nestjs/core": "^5.1.0",
"@nestjs/swagger": "^2.5.1",
"@nestjs/typeorm": "^5.2.2",
"@ngxs/logger-plugin": "^3.2.0",
"@ngxs/store": "^3.2.0",
"core-js": "^2.5.4",
"hammerjs": "^2.0.8",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.2.2",
"typeorm": "^0.2.9",
"typescript-collections": "^1.3.2",
"zone.js": "~0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.7.0",
"@angular/cli": "~6.1.1",
"@angular/compiler-cli": "^6.1.0",
"@angular/language-service": "^6.1.0",
"@compodoc/compodoc": "^1.1.6",
"@nestjs/testing": "^5.1.0",
"@ngxs/devtools-plugin": "^3.3.1",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.0",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/jest": "^23.3.1",
"@types/node": "^10.12.5",
"@types/supertest": "^2.0.5",
"browser-sync": "^2.26.3",
"codelyzer": "~4.2.1",
"concurrently": "^4.0.1",
"dotenv": "^6.1.0",
"gitbook-cli": "^2.3.2",
"gulp": "^3.9.1",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"jest": "^23.5.0",
"karma": "~1.7.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.0",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"nodemon": "^1.18.6",
"prettier": "^1.14.2",
"protractor": "~5.3.0",
"reflect-metadata": "^0.1.12",
"rimraf": "^2.6.2",
"supertest": "^3.1.0",
"ts-jest": "^23.1.3",
"ts-loader": "^4.4.2",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.6.0",
"tslint": "5.11.0",
"typedoc": "^0.13.0",
"typescript": "2.9.2",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-node-externals": "^1.7.2"
}
}