-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.3 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
{
"name": "angular2-workshop",
"version": "1.0.0",
"scripts": {
"compile": "tsc -p src/ --outDir dist/",
"compile:w": "tsc -p src/ --outDir dist/ -w",
"lite": "lite-server",
"start": "yarn compile && concurrently \"yarn run compile:w\" \"yarn run lite\" "
},
"license": "ISC",
"dependencies": {
"@angular/common": "^2.4.10",
"@angular/compiler": "^2.4.10",
"@angular/core": "^2.4.10",
"@angular/forms": "^2.4.10",
"@angular/http": "^2.4.10",
"@angular/platform-browser": "^2.4.10",
"@angular/platform-browser-dynamic": "^2.4.10",
"@angular/router": "^3.4.10",
"@angular/router-deprecated": "^2.0.0-rc.2",
"@angular/upgrade": "^2.4.10",
"@types/core-js": "^0.9.37",
"@types/jasmine": "^2.5.46",
"@types/node": "^7.0.8",
"angular2-in-memory-web-api": "^0.0.21",
"bootstrap": "^3.3.7",
"core-js": "^2.4.1",
"dev": "^0.1.3",
"ng2-bootstrap": "^1.6.0",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.0.0-beta.12",
"systemjs": "^0.20.10",
"zone.js": "^0.8.4"
},
"devDependencies": {
"concurrently": "^3.4.0",
"gulp": "^3.9.1",
"gulp-sourcemaps": "latest",
"gulp-typescript": "^3.1.6",
"gulp-webpack": "^1.5.0",
"lite-server": "^2.3.0",
"typescript": "^2.2.1",
"webpack": "^2.3.2"
}
}