-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
68 lines (68 loc) · 1.77 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
{
"name": "angular2-esnext-todomvc",
"version": "3.0.0",
"main": "client/app/main.js",
"scripts": {
"build": "webpack",
"deploy": "gh-pages -d dist",
"start": "webpack-dev-server",
"test": "karma start",
"test-watch": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blacksonic/angular2-esnext-todomvc.git"
},
"author": {
"name": "blacksonic",
"email": "soos.gabor86@gmail.com"
},
"license": "ISC",
"keywords": [
"angular2",
"todomvc",
"es6"
],
"description": "Angular TodoMVC application in Javascript (ES6/ES7).",
"engines": {
"node": "6.5.0"
},
"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",
"core-js": "~2.4.1",
"rxjs": "~5.4.0",
"todomvc-app-css": "~2.1.0",
"todomvc-common": "~1.0.3",
"uuid": "~3.0.1",
"zone.js": "~0.8.5"
},
"devDependencies": {
"babel-core": "~6.24.0",
"babel-loader": "~7.0.0",
"babel-preset-angular2": "~0.0.2",
"babel-preset-env": "~1.4.0",
"copy-webpack-plugin": "~4.0.1",
"css-loader": "~0.28.0",
"extract-text-webpack-plugin": "~2.1.0",
"gh-pages": "~1.0.0",
"html-loader": "~0.4.5",
"jasmine-core": "~2.6.1",
"karma": "~1.7.0",
"karma-jasmine": "~1.1.0",
"karma-phantomjs-launcher": "~1.0.4",
"karma-sourcemap-loader": "~0.3.7",
"karma-webpack": "~2.0.3",
"source-map-loader": "~0.2.1",
"style-loader": "~0.17.0",
"webpack": "~2.5.1",
"webpack-dev-server": "~2.4.2",
"webpack-merge": "~4.1.0"
}
}