-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.35 KB
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
{
"name": "angular2_todoapp",
"version": "1.0.0",
"description": "sample angular2 TodoApp",
"main": "tsconfig.json",
"dependencies": {
"@angular/common": "^2.4.1",
"@angular/compiler": "^2.4.1",
"@angular/core": "^2.4.1",
"@angular/forms": "latest",
"@angular/http": "latest",
"@angular/platform-browser": "^2.4.1",
"@angular/platform-browser-dynamic": "^2.4.1",
"@angular/router": "^3.0.0-rc.1",
"@angular/upgrade": "^2.0.0-rc.5",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.9",
"rxjs": "^5.0.0-beta.12",
"systemjs": "^0.19.41",
"typescript": "^2.1.4",
"typings": "^2.1.0",
"zone.js": "^0.6.26"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madhankumar028/Angular2-Todo.git"
},
"bugs": {
"url": "https://github.com/madhankumar028/Angular2-Todo/issues"
},
"homepage": "https://github.com/madhankumar028/Angular2-Todo#readme",
"scripts": {
"start": "concurrently -k \"npm run dev\" \"npm run db\"",
"db": "json-server --watch db.json --port 3005",
"dev": "lite-server",
"build": "tsc",
"build:w": "tsc -w",
"typings": "typings",
"postinstall": "typings install"
},
"author": "MadhankumarJ",
"license": "ISC",
"devDependencies": {
"concurrently": "^3.1.0",
"json-server": "^0.9.4",
"lite-server": "^2.2.2"
}
}