-
Notifications
You must be signed in to change notification settings - Fork 124
/
package.json
30 lines (30 loc) · 866 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
{
"name": "ng2-rest-website",
"version": "0.0.1",
"description": "Simple REST website in Angular 2 and NGRX",
"repository": "https://github.com/simpulton/ngrx-rest-app",
"scripts": {
"server": "json-server --watch server/api/db.json",
"tsc": "tsc",
"tsc:w": "tsc -w",
"client": "lite-server --baseDir './client' --baseDir './'",
"start": "concurrent \"npm run tsc:w\" \"npm run server\" \"npm run client\""
},
"dependencies": {
"angular2": "^2.0.0-beta.0",
"systemjs": "^0.19.9",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.13",
"reflect-metadata": "0.1.2",
"rxjs": "^5.0.0-beta.1",
"zone.js": "^0.5.10",
"@ngrx/store": "^1.2.1"
},
"devDependencies": {
"concurrently": "^1.0.0",
"lite-server": "^1.3.2",
"typescript": "^1.7.5"
},
"author": "Lukas Ruebbelke",
"license": "MIT"
}