-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.59 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
{
"name": "angular-migration",
"version": "1.0.0",
"description": "Example AngularJS -> Angular migration",
"scripts": {
"build": "rimraf dist && webpack --bail --progress --profile",
"server": "webpack-dev-server --history-api-fallback --inline --progress",
"test": "karma start",
"test-watch": "karma start --auto-watch --no-single-run",
"start": "npm run server"
},
"repository": {
"type": "git",
"url": "https://github.com/pavlovich/angular-migration.git"
},
"author": "Peter Pavlovich",
"license": "MIT",
"bugs": {
"url": "https://github.com/pavlovich/angular-migration/issues"
},
"homepage": "https://github.com/pavlovich/angular-migration",
"dependencies": {
"angular": "^1.6.4",
"angular-route": "~1.6.4",
"bootstrap": "^3.3.5",
"jquery": "^3.2.1",
"core-js": "^2.4.1",
"rxjs": "5.0.1",
"zone.js": "^0.7.2",
"@angular/common": "2.4.5",
"@angular/compiler": "2.4.5",
"@angular/core": "2.4.5",
"@angular/forms": "2.4.5",
"@angular/platform-browser": "2.4.5",
"@angular/upgrade": "2.4.5",
"@angular/router": "3.4.5"
},
"devDependencies": {
"angular-mocks": "^1.6.0",
"@types/angular": "^1.6.4",
"@types/angular-route": "*",
"@types/bootstrap": "^3.3.5",
"@types/node": "^7.0.18",
"@angular/platform-browser-dynamic": "2.4.5",
"@angular/platform-server": "2.4.5",
"@angular/compiler-cli": "2.4.5",
"@ngtools/webpack": "1.2.4",
"clang-format": "^1.0.32",
"typescript": "2.0.7",
"autoprefixer": "^6.0.3",
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"bootstrap-loader": "^2.1.0",
"bootstrap-sass": "^3.3.7",
"copy-webpack-plugin": "4.0.1",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.7.1",
"imports-loader": "^0.7.0",
"istanbul-instrumenter-loader": "^1.0.0",
"jasmine-core": "^2.3.4",
"karma": "^1.1.0",
"karma-coverage": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "2.0.1",
"node-libs-browser": "2.0.0",
"node-sass": "^4.5.2",
"null-loader": "^0.1.1",
"phantomjs-prebuilt": "^2.1.4",
"postcss-loader": "1.2.2",
"raw-loader": "^0.5.1",
"resolve-url-loader": "^2.0.2",
"rimraf": "^2.5.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.13.2",
"url-loader": "^0.5.8",
"webpack": "2.2.0",
"webpack-dev-server": "2.2.0"
}
}