-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 855 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
{
"name": "angularappone",
"version": "1.0.0",
"description": "My First angular app Evn set up",
"scripts": {
"start": "concurrently \"npm run tsc:w\" \"npm run lite-server\" ",
"tsc":"tsc",
"tsc:w": "tsc -w",
"lite-server":"lite-server"
},
"license": "MIT",
"dependencies": {
"@angular/common": "2.4.5",
"@angular/compiler": "2.4.5",
"@angular/core": "2.4.5",
"@angular/platform-browser": "2.4.5",
"@angular/platform-browser-dynamic": "2.4.5",
"reflect-metadata":"0.1.9",
"core-js":"2.1.4",
"systemjs": "0.19.40",
"rxjs": "5.0.3",
"zone.js":"0.7.6"
},
"devDependencies": {
"concurrently": "^3.1.0",
"lite-server": "^2.2.2",
"typescript": "~2.0.10"
},
"repository": {
}
}