-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.56 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "todo-angular2-firebase",
"version": "0.8.0",
"description": "Todo app with Angular2, AngularFire2, and Firebase",
"author": {
"name": "Richard Park",
"email": "[email protected]"
},
"homepage": "https://github.com/r-park/todo-angular2-firebase",
"repository": {
"type": "git",
"url": "git+https://github.com/r-park/todo-angular2-firebase.git"
},
"license": "MIT",
"private": true,
"engines": {
"node": ">=5.11"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack --display-chunks --progress",
"clean": "del-cli ./target",
"dev": "cross-env NODE_ENV=development webpack-dev-server --progress",
"lint": "npm-run-all lint:js lint:ts",
"lint:js": "eslint -c .eslintrc.yml *.js ./server",
"lint:ts": "tslint './src/**/*.ts'",
"postinstall": "npm run typings",
"prebuild": "npm-run-all clean lint:ts test",
"server": "cross-env NODE_ENV=development nodemon -w 'server/**/*.*' ./server/main.js",
"start": "npm run dev",
"test": "cross-env NODE_ENV=test karma start --single-run",
"test:watch": "cross-env NODE_ENV=test karma start",
"typings": "typings install"
},
"devDependencies": {
"@angular/common": "2.0.0-rc.4",
"@angular/compiler": "2.0.0-rc.4",
"@angular/core": "2.0.0-rc.4",
"@angular/forms": "0.2.0",
"@angular/platform-browser": "2.0.0-rc.4",
"@angular/platform-browser-dynamic": "2.0.0-rc.4",
"@angular/router": "3.0.0-beta.2",
"angularfire2": "2.0.0-beta.2",
"autoprefixer": "~6.3.6",
"core-js": "~2.4.0",
"cross-env": "~2.0.0",
"css-loader": "~0.23.1",
"del-cli": "~0.2.0",
"eslint": "~3.1.1",
"express": "~4.14.0",
"extract-text-webpack-plugin": "~1.0.1",
"firebase": "3.2.0",
"firebase-tools": "3.0.4",
"html-webpack-plugin": "~2.22.0",
"jasmine-core": "~2.4.1",
"karma": "~1.1.0",
"karma-chrome-launcher": "~1.0.1",
"karma-jasmine": "~1.0.2",
"karma-mocha-reporter": "~2.0.4",
"karma-sourcemap-loader": "~0.3.7",
"karma-webpack": "~1.7.0",
"minx": "r-park/minx.git",
"morgan": "~1.7.0",
"node-sass": "~3.8.0",
"nodemon": "~1.9.2",
"npm-run-all": "~2.3.0",
"postcss-loader": "~0.9.1",
"raw-loader": "~0.5.1",
"rxjs": "5.0.0-beta.6",
"sass-loader": "~4.0.0",
"style-loader": "~0.13.1",
"ts-loader": "~0.8.2",
"tslint": "~3.13.0",
"typescript": "~1.8.10",
"typings": "~1.3.0",
"webpack": "~1.13.1",
"webpack-dev-server": "~1.14.1",
"webpack-md5-hash": "~0.0.5",
"winston": "~2.2.0",
"zone.js": "~0.6.12"
}
}