-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
38 lines (38 loc) · 972 Bytes
/
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
{
"name": "chapter_03",
"version": "1.0.0",
"description": "Chapter 3 - Implementing properties and events in our Components",
"main": "bootstrap.js",
"keywords": [],
"author": "Pablo Deeleman",
"repository": {
"type": "git",
"url": "git://github.com/deeleman/angular2-essentials.git"
},
"scripts": {
"postinstall": "npm run typings install",
"tsc": "tsc",
"tsc:w": "tsc -w",
"lite": "lite-server",
"prestart": "tsc",
"start": "concurrently \"npm run tsc:w\" \"npm run lite\" ",
"typings": "typings"
},
"license": "ISC",
"dependencies": {
"angular2": "2.0.0-beta.8",
"bootstrap": "^3.3.6",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.3",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.2",
"zone.js": "0.5.15"
},
"devDependencies": {
"concurrently": "^2.0.0",
"lite-server": "^2.1.0",
"systemjs": "^0.19.20",
"typescript": "1.8.2",
"typings": "^0.6.10"
}
}