-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (56 loc) · 1.84 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
{
"name": "angular2-dynamic-components",
"version": "0.0.1",
"description": "Angular 2 Dynamic Components",
"scripts": {
"tsc": "tsc -p tsconfig.json",
"tsc:w": "tsc -p tsconfig.json -w",
"lite": "lite-server",
"start": "npm run tsc && concurrently \"npm run tsc:w\" \"npm run lite\" ",
"clean:aot": "rimraf aot/aot/* && rimraf aot/app/* && rimraf aot/dist/* && rimraf aot/node_modules/* && rimraf app/*.js*",
"build:aot": "ngc -p tsconfig-aot.json && gulp aot-bundle",
"lite:aot": "lite-server -c aot/bs-config.json",
"clean-build:aot": "npm run clean:aot && npm run build:aot"
},
"repository": {
"type": "git",
"url": "https://github.com/seanlandsman/angular2-dynamic-components.git"
},
"author": "Sean Landsman <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/seanlandsman/angular2-dynamic-components/issues"
},
"homepage": "http://www.ag-grid.com/",
"dependencies": {
"@angular/common": "2.2.3",
"@angular/compiler": "2.2.3",
"@angular/compiler-cli": "2.2.3",
"@angular/core": "2.2.3",
"@angular/forms": "2.2.3",
"@angular/http": "2.2.3",
"@angular/platform-browser": "2.2.3",
"@angular/platform-browser-dynamic": "2.2.3",
"@angular/platform-server": "2.2.3",
"@angular/router": "3.2.3",
"angular-in-memory-web-api": "0.1.13",
"@types/core-js": "^0.9.34",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.3",
"systemjs": "0.19.27",
"rxjs": "5.0.0-beta.12",
"zone.js": "^0.6.23",
"bootstrap":"3.3.7"
},
"devDependencies": {
"@types/angular": "^1.5.16",
"@types/angular-route": "^1.3.2",
"@types/core-js": "^0.9.34",
"@types/node": "^6.0.45",
"concurrently": "^2.2.0",
"lite-server": "^2.2.2",
"typescript": "2.0.2",
"gulp": "^3.9.1",
"systemjs-builder": "^0.15.33"
}
}