-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
69 lines (69 loc) · 1.98 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
{
"name": "angular-2-aot-sandbox",
"version": "0.0.1",
"description": "Angular 2 AoT sandbox",
"license": "MIT",
"keywords": [
"angular2",
"typescript",
"aot"
],
"engines": {
"node": "6"
},
"scripts": {
"clean": "rimraf dist/ && rimraf sandbox/",
"sandbox:ngc": "node_modules/.bin/ngc -p sandbox && cross-env NODE_ENV=production webpack --config webpack-aot-ngc.config.js",
"sandbox:ngtools": "cross-env NODE_ENV=production webpack --config webpack-aot-ngtools.config.js",
"sandbox:jit": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"start": "http-server ./dist"
},
"repository": {
"type": "git",
"url": "https://github.com/rangle/angular-2-aot-sandbox"
},
"bugs": {
"url": "https://github.com/rangle/angular-2-aot-sandbox/issues"
},
"dependencies": {
"@angular/common": "2.2.4",
"@angular/compiler": "2.2.4",
"@angular/compiler-cli": "2.2.4",
"@angular/core": "2.2.4",
"@angular/forms": "2.2.4",
"@angular/platform-browser": "2.2.4",
"@angular/platform-browser-dynamic": "2.2.4",
"@angular/router": "3.2.4",
"@types/node": "6.0.38",
"awesome-typescript-loader": "2.2.3",
"babel-core": "6.18.2",
"babel-polyfill": "6.16.0",
"babel-loader": "6.2.8",
"babel-preset-es2015": "6.18.0",
"core-js": "2.4.1",
"cross-env": "3.1.3",
"ts-helpers": "1.1.2",
"typescript": "2.0.2",
"http-server": "0.9.0",
"html-webpack-plugin": "2.24.1",
"reflect-metadata": "0.1.8",
"rimraf": "2.5.4",
"rxjs": "5.0.0-beta.12",
"zone.js": "0.6.21",
"webpack": "2.1.0-beta.25",
"webpack-dev-server": "2.1.0-beta.5"
},
"devDependencies": {
"@ngrx/core": "1.2.0",
"@ngrx/effects": "2.0.0",
"@ngrx/store": "2.2.1",
"@ngtools/webpack": "1.1.7",
"@types/core-js": "0.9.35",
"@types/jquery": "2.0.34",
"jquery": "3.1.1",
"ncp": "2.0.0",
"ng2-redux": "4.1.0",
"ngrx-store-logger": "0.1.7",
"redux": "3.6.0"
}
}