forked from toddmotto/reactive-pizza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·60 lines (60 loc) · 1.75 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "ng-boilerplate",
"version": "0.0.0",
"author": "Ultimate Angular",
"license": "MIT",
"scripts": {
"build": "cross-env NODE_ENV=production webpack -p",
"build:dev": "cross-env NODE_ENV=development webpack-dev-server --inline --hot",
"clean": "rimraf build",
"start": "yarn run build:dev",
"start:production": "yarn run clean && yarn run build",
"test": "karma start --single-run",
"test:watch": "karma start"
},
"devDependencies": {
"@angular/compiler": "4.1.1",
"@angular/compiler-cli": "^4.1.1",
"@ngtools/webpack": "^1.3.1",
"@types/core-js": "0.9.41",
"@types/jasmine": "2.5.47",
"@types/karma": "0.13.35",
"@types/node": "7.0.14",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^3.1.3",
"file-loader": "0.11.1",
"html-loader": "0.4.5",
"jasmine-core": "2.6.1",
"karma": "1.6.0",
"karma-chrome-launcher": "2.0.0",
"karma-jasmine": "1.1.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "2.0.3",
"node-sass": "4.5.2",
"raw-loader": "0.5.1",
"rimraf": "2.6.1",
"sass-loader": "6.0.3",
"typescript": "2.3.2",
"webpack": "2.4.1",
"webpack-dev-server": "2.4.5"
},
"dependencies": {
"@angular/animations": "4.1.1",
"@angular/common": "4.1.1",
"@angular/core": "4.1.1",
"@angular/forms": "4.1.1",
"@angular/http": "4.1.1",
"@angular/platform-browser": "4.1.1",
"@angular/platform-browser-dynamic": "4.1.1",
"@angular/router": "4.1.1",
"angularfire2": "4.0.0-rc0",
"core-js": "2.4.1",
"cross-env": "^4.0.0",
"firebase": "^3.9.0",
"reflect-metadata": "0.1.10",
"rxjs": "5.3.0",
"tslib": "1.6.1",
"zone.js": "0.8.9"
}
}