-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 3.49 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
{
"name": "angular-seed",
"version": "1.0.0",
"description": "An Angular Seed with Webpack 2, AoT, Lazy Routes, Sass, Karma, Protractor, Codelyzer, Typedocs and Yarn.",
"author": "UruIT <hello@uruit.com>",
"homepage": "https://github.com/UruIT/angular-seed",
"repository": {
"type": "git",
"url": "https://github.com/UruIT/angular-seed.git"
},
"license": "MIT",
"scripts": {
"build:prod": "npm run clean:aot && webpack --config webpack.config.js --progress --profile --bail",
"build:prod:analyze": "npm run clean:aot && webpack --config webpack.config.js --progress --profile --bail",
"build:prod:live": "npm run clean:aot && webpack --config webpack.config.js --progress --profile --bail --env.environment=live",
"clean:aot": "rimraf -- aot dist",
"docs": "typedoc --options config/typedoc.json ./src/",
"e2e": "npm-run-all -p -r server:prod:e2e protractor",
"lint": "tslint src/**/*.ts",
"postinstall": "webdriver-manager update",
"protractor": "protractor",
"server:prod": "superstatic dist -c config/superstatic.json -p 8080 --gzip",
"server:prod:e2e": "superstatic dist -c config/superstatic.json -p 3000 --gzip",
"start": "webpack-dev-server --config webpack.config.js --open --progress --profile --watch --content-base src/",
"start:prod": "npm run build:prod && npm run server:prod",
"start:prod:live": "npm run build:prod:live && npm run server:prod",
"test": "npm run lint && karma start",
"watch:test": "npm run test -- --auto-watch --no-single-run",
"webdriver:update": "webdriver-manager update"
},
"dependencies": {
"@angular/common": "^4.1.1",
"@angular/compiler": "^4.1.1",
"@angular/core": "^4.1.1",
"@angular/forms": "^4.1.1",
"@angular/http": "^4.1.1",
"@angular/platform-browser": "^4.1.1",
"@angular/platform-browser-dynamic": "^4.1.1",
"@angular/router": "^4.1.1",
"core-js": "^2.4.1",
"rxjs": "^5.0.1",
"ts-helpers": "^1.1.2",
"zone.js": "^0.8.9"
},
"devDependencies": {
"@angular/compiler-cli": "^4.1.1",
"@types/jasmine": "2.5.45",
"@types/webpack": "^2.2.15",
"angular2-template-loader": "^0.6.2",
"assets-webpack-plugin": "^3.5.1",
"awesome-typescript-loader": "^3.1.3",
"codelyzer": "^3.0.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"imagemin-webpack-plugin": "^1.4.4",
"istanbul-instrumenter-loader": "^2.0.0",
"jasmine-core": "^2.6.1",
"json-loader": "^0.5.4",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.1.1",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.3",
"karma-remap-coverage": "^0.1.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"ng-router-loader": "^2.1.0",
"ngc-webpack": "^2.0.0",
"node-sass": "^4.5.2",
"npm-run-all": "^4.0.2",
"optimize-js-plugin": "^0.0.4",
"path": "^0.12.7",
"postcss-cssnext": "^2.10.0",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.3.3",
"protractor": "^5.1.1",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"script-ext-html-webpack-plugin": "^1.7.1",
"source-map-loader": "^0.2.1",
"style-loader": "^0.17.0",
"superstatic": "^4.1.0",
"to-string-loader": "^1.1.5",
"ts-node": "^3.0.4",
"tslib": "^1.7.0",
"tslint": "^5.2.0",
"tslint-loader": "^3.5.3",
"typedoc": "^0.6.0",
"typescript": "^2.3.2",
"webpack": "^2.5.1",
"webpack-bundle-analyzer": "^2.6.0",
"webpack-dev-server": "^2.4.5",
"webpack-merge": "^4.1.0"
}
}