-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
104 lines (104 loc) · 3.94 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
{
"name": "vk-dialogs",
"version": "2.8.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build.main": "ng build -a main --aot",
"build.back": "ng build -a background --aot",
"build.dev.0": "ng build -a 0",
"build.dev.1": "ng build -a 1",
"build.dev.2": "ng build -a 2",
"build.aot.0": "ng build -a 0 --aot",
"build.aot.1": "ng build -a 1 --aot",
"build.aot.2": "ng build -a 2 --aot",
"build.prod.0": "ng build -a 0 --aot --prod --output-hashing none --extract-css false",
"build.prod.1": "ng build -a 1 --aot --prod --output-hashing none --extract-css false",
"build.prod.2": "ng build -a 2 --aot --prod --output-hashing none --extract-css false",
"build.dev.bundle": "webpack --config config/webpack.dev.js --progress --profile --display-error-details",
"build.prod.bundle": "webpack --config config/webpack.prod.js --progress --profile --display-error-details",
"build.ext.dev": "ng build --aot & npm run build.bundle.dev",
"build.prod.all": "npm run build.0 & npm run build.1 & npm run build.2 & npm run build.bundle.prod",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^4.0.1",
"@angular/common": "^4.0.1",
"@angular/compiler": "^4.0.1",
"@angular/compiler-cli": "^4.0.1",
"@angular/core": "^4.0.1",
"@angular/forms": "^4.0.1",
"@angular/http": "^4.0.1",
"@angular/platform-browser": "^4.0.1",
"@angular/platform-browser-dynamic": "^4.0.1",
"@angular/platform-server": "^4.0.1",
"@angular/router": "^4.0.1",
"@angular/upgrade": "^4.0.1",
"@angularclass/hmr": "^1.2.2",
"@angularclass/hmr-loader": "^3.0.2",
"@angularclass/request-idle-callback": "^1.0.7",
"@angularclass/webpack-toolkit": "^1.3.3",
"@ngrx/core": "^1.2.0",
"@ngrx/router-store": "^1.2.5",
"@ngrx/store": "^2.2.1",
"bootstrap": "^3.3.6",
"bootstrap-sass": "^3.3.7",
"core-js": "^2.4.0",
"jquery": "^3.2.1",
"jshint": "^2.9.3",
"jshint-loader": "^0.8.3",
"lodash": "^4.17.4",
"material-design-icons": "^3.0.1",
"material-icons": "^0.1.0",
"material-icons-font": "^1.0.0",
"moment": "^2.18.1",
"ngrx-store-logger": "^0.1.7",
"node-libs-browser": "^1.0.0",
"reflect-metadata": "^0.1.8",
"rxjs": "^5.1.0",
"zone.js": "^0.8.5"
},
"devDependencies": {
"@angular/cli": "^1.0.1",
"@angular/compiler-cli": "^2.4.0",
"@types/chrome": "0.0.44",
"@types/jasmine": "2.5.38",
"@types/jquery": "^2.0.41",
"@types/lodash": "^4.14.62",
"@types/node": "~6.0.60",
"babel-core": "^7.0.0-alpha.7",
"babel-loader": "^7.0.0-beta.1",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"codelyzer": "~2.0.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.0",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.28.0",
"jasmine-core": "~2.5.2",
"jasmine-spec-reporter": "~3.2.0",
"karma": "~1.4.1",
"karma-chrome-launcher": "~2.0.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^0.2.0",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"node-sass": "^4.5.2",
"protractor": "~5.1.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"ts-loader": "^2.0.3",
"ts-node": "~2.0.0",
"tslint": "~4.5.0",
"typescript": "^2.2.2",
"url-loader": "^0.5.8",
"webpack": "^2.3.3",
"webpack-merge": "^4.1.0",
"webpack-zip-bundler": "^1.0.3"
}
}