forked from CAG-Contactor/angular2-day
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.68 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
{
"name": "angular2-day",
"version": "1.0.0",
"description": "CAG Angular 2 lab day",
"license": "UNLICENSED",
"author": "Joel Binnquist",
"repository": "https://github.com/CAG-Contactor/angular2-day",
"scripts": {
"postinstall": "typings install && npm run build",
"clean": "rm -rf ./dist",
"build": "npm run cpx && concurrently \"npm run cpx-node\" \"npm run tsc\"",
"dev-server": "tsc && concurrently \"npm run cpx:w\" \"npm run tsc:w\" \"npm run lite\"",
"lite": "lite-server -c lite-server.json",
"cpx": "./node_modules/.bin/cpx \"src/**/*.{js,ts,html,png,jpg,css}\" dist --verbose",
"cpx:w": "./node_modules/.bin/cpx \"src/**/*.{js,ts,html,png,jpg,css}\" dist --verbose --watch",
"cpx-node": "./node_modules/.bin/cpx \"node_modules/**/*.*\" dist/node_modules --verbose",
"tsc": "./node_modules/.bin/tsc",
"tsc:w": "./node_modules/.bin/tsc -w",
"typings": "./node_modules/.bin/typings"
},
"dependencies": {
"@angular/common": "2.0.0-rc.1",
"@angular/compiler": "2.0.0-rc.1",
"@angular/core": "2.0.0-rc.1",
"@angular/http": "2.0.0-rc.1",
"@angular/platform-browser": "2.0.0-rc.1",
"@angular/platform-browser-dynamic": "2.0.0-rc.1",
"@angular/router": "2.0.0-rc.1",
"@angular/router-deprecated": "2.0.0-rc.1",
"@angular/upgrade": "2.0.0-rc.1",
"systemjs": "0.19.27",
"es6-shim": "^0.35.0",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.6",
"zone.js": "^0.6.12",
"angular2-in-memory-web-api": "0.0.7",
"bootstrap": "^3.3.6"
},
"devDependencies": {
"concurrently": "^2.0.0",
"cpx": "^1.3.1",
"lite-server": "^2.2.0",
"typescript": "^1.8.10",
"typings": "^0.8.1"
}
}