This repository was archived by the owner on Jul 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
188 lines (188 loc) · 6.6 KB
/
package.json
File metadata and controls
188 lines (188 loc) · 6.6 KB
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
{
"name": "angular-preboot",
"version": "4.4.4",
"description": "A teeny tiny Angular template to get your next great project booted. It is powered by great ideas and Webpack 2.",
"keywords": [
"angular",
"webpack",
"typescript"
],
"author": {
"name": "Sebastian Döll",
"email": "sebastian@katallaxie.me"
},
"homepage": "https://github.com/katallaxie/angular-preboot",
"license": "MIT",
"scripts": {
"build:dev": "cross-env NODE_ENV=development webpack --progress --profile",
"build:docker": "npm run build:prod && docker build -t angular2-preboot:latest .",
"build:prod": "cross-env NODE_ENV=production webpack --progress --profile --bail --debug",
"build": "npm run build:dev",
"ci": "npm test --runInBand && npm run e2e && bundlesize",
"clean:aot": "npm run rimraf -- aot",
"clean:public": "npm run rimraf -- public",
"clean:dll": "rimraf -- dll",
"clean:install": "npm set progress=false && npm install",
"clean:start": "npm run clean:dll && npm run clean:public && start",
"clean": "npm cache clean --force && npm run rimraf -- doc coverage public aot dll node_modules",
"cross-env": "cross-env",
"dev": "cross-env NODE_ENV=development",
"dll": "cross-env NODE_ENV=development webpack --progress --profile",
"docker": "docker",
"docs": "npm run typedoc -- --options typedoc.json --exclude '**/*.spec.ts' ./src/",
"e2e": "npm-run-all -p -r server:ci protractor",
"help": "node node_modules/npm-scripts-help",
"fmt": "prettier --write --single-quote src/**/*.ts; exit 0",
"lint": "npm run tslint",
"lighthouse": "lighthouse http://127.0.0.1:8080 --view --output-path ./lighthouse.html",
"postversion": "git push && git push --tags",
"prebuild:dev": "npm run clean:public",
"prebuild:prod": "npm run clean:public && npm run clean:aot",
"preclean:install": "npm run clean",
"preclean:start": "npm run clean",
"pree2e": "npm run webdriver:update -- --standalone",
"preversion": "npm test",
"prod": "cross-env NODE_ENV=production",
"protractor": "protractor",
"rimraf": "rimraf",
"server:ci": "http-server public -p 3000 -c-1 --cors",
"server:dev": "cross-env NODE_ENV=development npm run webpack-dev-server --open --progress --profile --watch",
"server:prod": "http-server public -c-1 --cors",
"server": "npm run server:dev",
"start": "npm run server:dev",
"test": "cross-env NODE_ENV=testing npm run lint && jest",
"test:pwa": "npm-run-all -p -r server:prod lighthouse",
"test:watch": "jest --watch",
"test:bundlesize": "npm run bundlesize",
"tslint": "node_modules/tslint/bin/tslint --type-check --project tsconfig.json -e 'src/**/*.spec.ts' -e 'src/**/*.e2e.ts' 'src/**/*.ts'",
"typedoc": "typedoc",
"version": "npm run build",
"watch:dev": "npm run build:dev -- --watch",
"watch:prod": "npm run build:prod -- --watch",
"watch:test": "npm run test -- --auto-watch --no-single-run",
"watch": "npm run watch:dev",
"webdriver-manager": "webdriver-manager",
"webdriver:start": "npm run webdriver-manager start",
"webdriver:update": "npm run webdriver-manager update",
"webpack-dev-server": "webpack-dev-server",
"webpack": "webpack"
},
"dependencies": {
"@angular/animations": "^4.4.4",
"@angular/common": "^4.4.4",
"@angular/core": "^4.4.4",
"@angular/forms": "^4.4.4",
"@angular/http": "^4.4.4",
"@angular/platform-browser": "^4.4.4",
"@angular/platform-browser-dynamic": "^4.4.4",
"@angular/platform-server": "^4.4.4",
"@angular/router": "^4.4.4",
"core-js": "^2.5.1",
"hammerjs": "^2.0.8",
"ie-shim": "^0.1.0",
"rxjs": "^5.0.1",
"zone.js": "^0.8.12"
},
"devDependencies": {
"@angular/compiler": "^4.4.4",
"@angular/compiler-cli": "^4.4.4",
"@types/hammerjs": "^2.0.33",
"@types/jest": "^21.1.0",
"@types/node": "^8.0.28",
"@types/selenium-webdriver": "^3.0.6",
"@types/source-map": "^0.5.0",
"@types/uglify-js": "^2.6.29",
"angular2-template-loader": "^0.6.0",
"autodll-webpack-plugin": "^0.3.3",
"autoprefixer": "^7.1.4",
"awesome-typescript-loader": "^3.2.3",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"brotli-webpack-plugin": "^0.4.1",
"bundlesize": "^0.15.3",
"codelyzer": "^3.1.2",
"compression-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.1",
"cross-spawn": "^5.0.1",
"css-loader": "^0.28.7",
"cssnano": "^3.10.0",
"exports-loader": "^0.6.3",
"expose-loader": "^0.7.3",
"file-loader": "^1.1.0",
"html-elements-webpack-plugin": "^1.0.1",
"html-loader": "^0.5.0",
"html-webpack-plugin": "^2.29.0",
"http-server": "^0.10.0",
"imports-loader": "^0.7.0",
"jest": "^21.0.2",
"jest-preset-angular": "^4.0.0",
"json-loader": "^0.5.7",
"lighthouse": "^2.3.0",
"ng-router-loader": "^2.0.0",
"ngc-webpack": "^3.2.0",
"npm-run-all": "^4.1.1",
"npm-scripts-help": "^0.7.0",
"offline-plugin": "^4.8.3",
"optimize-js-plugin": "0.0.4",
"parse5": "^3.0.1",
"postcss": "^6.0.11",
"postcss-loader": "^2.0.2",
"preload-webpack-plugin": "^2.0.0",
"prettier": "^1.6.1",
"protractor": "^5.1.1",
"raw-loader": "0.5.1",
"reflect-metadata": "^0.1.9",
"rimraf": "^2.5.2",
"script-ext-html-webpack-plugin": "^1.8.5",
"source-map-loader": "^0.2.0",
"string-replace-loader": "1.3.0",
"style-loader": "^0.19.0",
"to-string-loader": "^1.1.4",
"ts-node": "^3.3.0",
"tslib": "^1.5.0",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.5.0",
"tslint-loader": "^3.5.1",
"typedoc": "^0.9.0",
"typescript": "2.6.1",
"url-loader": "^0.6.1",
"webpack": "3.8.1",
"webpack-dev-middleware": "^1.11.0",
"webpack-dev-server": "2.9.4",
"webpack-merge": "^4.1.0"
},
"bundlesize": [
{
"path": "./public/vendor.*.js",
"maxSize": "400 kB"
},
{
"path": "./public/polyfills.*.js",
"maxSize": "120 kB"
}
],
"jest": {
"globals": {
"ts-jest": "tsconfig.json"
},
"preset": "jest-preset-angular",
"transform": {
"^.+\\.(ts|js)$": "<rootDir>/node_modules/jest-preset-angular/preprocessor.js",
"^.+\\.html$": "<rootDir>/utils/htmlLoader.ts"
},
"setupTestFrameworkScriptFile": "<rootDir>/config/jestSetup.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/katallaxie/angular-preboot.git"
},
"bugs": {
"url": "https://github.com/katallaxie/angular-preboot/issues"
},
"engines": {
"node": ">= 6.9.1",
"npm": ">= 3"
}
}