-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.82 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
{
"name": "todo-angular2-firebase",
"version": "0.4.2",
"description": "Todo app with Angular2 and Firebase",
"homepage": "https://github.com/r-park/todo-angular2-firebase",
"repository": "https://github.com/r-park/todo-angular2-firebase.git",
"author": {
"name": "Richard Park",
"email": "[email protected]"
},
"license": "MIT",
"private": true,
"engines": {
"node": ">=4.2"
},
"scripts": {
"build": "npm run clean && npm test && ./node_modules/.bin/webpack --config webpack.dist.js --progress",
"clean": "./node_modules/.bin/de ./target",
"start": "./node_modules/.bin/webpack-dev-server --config webpack.dev.js --progress",
"test": "./node_modules/.bin/karma start --single-run"
},
"dependencies": {
"angular2": "2.0.0-beta.0",
"es6-shim": "~0.33.13",
"firebase": "~2.3.2",
"immutable": "~3.7.5",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.0",
"zone.js": "0.5.10"
},
"devDependencies": {
"autoprefixer-loader": "~3.1.0",
"browser-sync": "~2.10.1",
"connect-history-api-fallback": "~1.1.0",
"css-loader": "~0.23.0",
"del": "~2.2.0",
"del-cli": "~0.1.1",
"extract-text-webpack-plugin": "~0.9.1",
"gulp": "gulpjs/gulp.git#4.0",
"gulp-tslint": "~4.2.1",
"gulp-util": "~3.0.7",
"html-webpack-plugin": "~1.7.0",
"jasmine-core": "~2.4.1",
"karma": "~0.13.15",
"karma-chrome-launcher": "~0.2.2",
"karma-jasmine": "~0.3.6",
"karma-sourcemap-loader": "~0.3.6",
"karma-webpack": "~1.7.0",
"minx": "~0.4.14",
"mockfirebase": "^0.12.0",
"node-sass": "~3.4.2",
"raw-loader": "~0.5.1",
"sass-loader": "~3.1.2",
"style-loader": "~0.13.0",
"ts-loader": "~0.7.2",
"tslint": "~3.2.0",
"typescript": "~1.7.5",
"webpack": "~1.12.9",
"webpack-dev-server": "~1.14.0"
}
}