-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
165 lines (165 loc) · 6.09 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "angular-webpack-seed",
"version": "0.0.0-a",
"private": true,
"description": "",
"license": "Xnet",
"scripts": {
"gulp": "ts-node -F node_modules/gulp/bin/gulp",
"prestart": "npm run gulp -- server:prestart",
"start": "npm run server",
"eslint": "npm run gulp -- eslint",
"clean": "rimraf build",
"tsc": "tsc",
"compile": "tsc",
"compile:w": "tsc --watch",
"tschk": "echo tsc --noEmit ... && tsc --noEmit --noUnusedLocals",
"tschk:w": "npm run tschk -- --watch",
"test": "npm run build:all && npm run test:all && npm run stryker",
"test:all": "npm run eslint && npm run tschk && npm run coverage",
"t": "npm run karma -- --single-run",
"test:w": "npm run karma",
"server": "webpack-dev-server --hot --progress --colors",
"server:dashboard": "npm run server -- --env.dashboard",
"build": "webpack --progress --colors",
"build:prod": "npm run build -- --env.prod",
"build:prod:size": "npm run build:prod -- --display-modules --sort-modules-by=size",
"dashboard": "webpack-dashboard -- npm run server:dashboard",
"up": "node node_modules/updtr/bin/updtr --test-stdout --save-exact -R simple --test \"npm run test\"",
"build:libs": "npm run build -- --env.libs",
"build:style": "npm run build -- --env.style",
"build:style:prod": "npm run build:style -- --env.prod",
"build:vendors": "npm run build:libs && npm run build:style",
"build:all": "npm run build:vendors && npm run build",
"build:all:prod": "npm run build:style:prod && npm run build:prod",
"build:prod:all": "npm run build:style:prod && npm run build:prod",
"build:release": "npm run clean && npm run build:all:prod",
"test:build:prod": "npm run build:release && npm run gulp check:build:prod",
"test:int": "npm run gulp -- test:int",
"postinstall": "npm run build:vendors",
"yi": "yarn install --no-lockfile",
"karma": "karma start",
"coverage": "npm run karma -- --single-run --coverage",
"coverage:debug": "npm run karma -- --single-run --coverage --log-level debug",
"p": "concurrently",
"dev2a": "npm run p -q -- \"npm run test:w\" \"npm run gulp eslint:watch\"",
"dev3a": "npm run p -q -- \"npm run test:w\" \"npm run gulp eslint:watch\" \"npm run tschk:w\"",
"dev4a": "npm run p -q -- \"npm run test:w\" \"npm run gulp eslint:watch\" \"npm run tschk:w\" \"npm run server\"",
"dev2b": "npm run p -q -- \"npm run test:w\" \"npm run server\"",
"stryker:run": "stryker run stryker.conf.js",
"stryker:source": "npm run gulp -- stryker:source",
"stryker": "npm run stryker:source && npm run stryker:run && npm run gulp killzombie",
"prepush": "npm run test:all"
},
"engines": {
"npm": ">=3"
},
"dependencies": {
"@angular/common": "4.1.2",
"@angular/compiler": "4.1.2",
"@angular/core": "4.1.2",
"@angular/forms": "4.1.2",
"@angular/http": "4.1.2",
"@angular/platform-browser": "4.1.2",
"@angular/platform-browser-dynamic": "4.1.2",
"@angular/router": "4.1.2",
"@ngx-config/core": "0.2.0-rc.5",
"@ngx-translate/core": "6.0.1",
"@ngx-translate/http-loader": "0.0.3",
"core-js": "2.4.1",
"rxjs": "5.4.0",
"tslib": "1.7.1",
"zone.js": "0.8.10"
},
"devDependencies": {
"@angular/compiler-cli": "4.1.2",
"@angularclass/hmr": "1.2.2",
"@angularclass/hmr-loader": "3.0.2",
"@blueprintjs/core": "1.17.1",
"@types/express": "4.0.35",
"@types/jasmine": "2.5.47",
"@types/karma": "0.13.35",
"@types/lodash": "4.14.64",
"@types/node": "7.0.18",
"@types/webpack": "2.2.15",
"@types/webpack-env": "1.13.0",
"@ultimate/aot-loader": "0.1.16",
"angular-router-loader": "0.6.0",
"angular2-template-loader": "0.6.2",
"asset-inject-html-webpack-plugin": "0.6.2",
"autoprefixer": "7.1.0",
"awesome-typescript-loader": "3.1.3",
"babel-eslint": "7.2.3",
"concurrently": "3.4.0",
"copy-webpack-plugin": "4.0.1",
"cross-spawn": "5.1.0",
"css-entry-webpack-plugin": "1.0.0-beta.4",
"css-loader": "0.28.1",
"css-to-string-loader": "0.1.2",
"ejs-loader": "0.3.0",
"eslint": "3.19.0",
"eslint-plugin-flowtype": "2.33.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jasmine": "2.2.0",
"eslint-plugin-lodash": "2.4.2",
"eslint-plugin-lodash-smells": "0.2.0",
"eslint-plugin-perf-standard": "1.0.3",
"eslint-plugin-prefer-spread": "1.0.3",
"eslint-plugin-typescript": "0.1.0",
"eslint-plugin-unicorn": "2.1.1",
"eslint-plugin-wix-editor": "1.1.1",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "0.11.1",
"fkill": "4.1.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-debug": "3.1.0",
"gulp-eslint": "3.0.1",
"gulp-if": "2.0.2",
"gulp-ignore": "2.0.2",
"gulp-load-plugins": "1.5.0",
"gulp-memory-cache": "0.3.0",
"gulp-typescript": "3.1.6",
"gulp-util": "3.0.8",
"html-loader": "0.4.5",
"html-webpack-plugin": "2.28.0",
"ifdef-loader": "1.1.1",
"istanbul-instrumenter-loader": "2.0.0",
"jasmine-core": "2.6.1",
"karma": "1.7.0",
"karma-coverage": "1.1.1",
"karma-html-reporter": "0.2.7",
"karma-jasmine": "1.1.0",
"karma-junit-reporter": "1.2.0",
"karma-mocha-reporter": "2.2.3",
"karma-nightmare": "0.4.6",
"karma-remap-coverage": "0.1.4",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.3",
"lodash": "4.17.4",
"node-sass": "4.5.3",
"object-diff": "0.0.4",
"postcss": "6.0.1",
"postcss-import": "10.0.0",
"postcss-loader": "2.0.5",
"postcss-url": "6.1.0",
"raw-loader": "0.5.1",
"read-pkg-up": "2.0.0",
"rimraf": "2.6.1",
"sass-loader": "6.0.5",
"stryker": "0.6.1",
"stryker-api": "0.5.0",
"stryker-html-reporter": "0.4.1",
"stryker-jasmine": "0.2.1",
"stryker-karma-runner": "0.4.0",
"style-loader": "0.17.0",
"ts-node": "3.0.4",
"typescript": "2.3.2",
"typescript-eslint-parser": "2.1.0",
"updtr": "1.0.0",
"url-loader": "0.5.8",
"webpack": "2.5.1",
"webpack-dashboard": "0.4.0",
"webpack-dev-server": "2.4.5",
"webpack-hot-middleware": "2.18.0"
}
}