-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.01 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
{
"name": "angular2-es6-playground",
"version": "0.0.1",
"description": "Experimenting with Angular 2 with ES6",
"main": "index.js",
"scripts": {
"build": "webpack --progress --profile --color --display-error-details --display-cached",
"build:profile": "webpack --profile --json > stats.log",
"lint": "eslint ./src",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --progress --profile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcaballeroc/angular2-es6-playground.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dcaballeroc/angular2-es6-playground/issues"
},
"homepage": "https://github.com/dcaballeroc/angular2-es6-playground#readme",
"dependencies": {
"@angular/common": "^2.0.0-rc.1",
"@angular/compiler": "^2.0.0-rc.1",
"@angular/core": "^2.0.0-rc.1",
"@angular/platform-browser": "^2.0.0-rc.1",
"@angular/platform-browser-dynamic": "^2.0.0-rc.1",
"@angular/router-deprecated": "^2.0.0-rc.1",
"core-js": "^2.3.0",
"rxjs": "5.0.0-beta.6",
"zone.js": "^0.6.12"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-angular2-annotations": "^5.1.0",
"babel-plugin-transform-class-properties": "^6.8.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-preset-es2015-webpack": "^6.4.1",
"css-loader": "^0.23.1",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-loader": "^1.3.0",
"extract-text-webpack-plugin": "^1.0.1",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.16.2",
"node-sass": "^3.7.0",
"postcss-loader": "^0.9.1",
"raw-loader": "^0.5.1",
"sass-loader": "^3.2.0",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.1",
"webpack": "^2.1.0-beta.6",
"webpack-dev-server": "^2.1.0-beta.0"
}
}