forked from r-park/todo-angular-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.44 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.44 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "todo-angular2-firebase",
"version": "0.8.0",
"description": "Todo app with Angular2, AngularFire2, and Firebase",
"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": ">=6.5"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack --display-chunks --progress",
"clean:coverage": "del-cli ./coverage",
"clean:target": "del-cli ./target",
"coverage:html": "remap-istanbul -i ./coverage/json/coverage.json -o ./coverage/html -t html",
"coverage:lcov": "remap-istanbul -i ./coverage/json/coverage.json -o ./coverage/lcov/coverage.lcov -t lcovonly",
"coveralls": "coveralls < ./coverage/lcov/coverage.lcov",
"lint": "run-s lint:js lint:ts",
"lint:js": "eslint -c .eslintrc.yml *.js ./server",
"lint:ts": "tslint './src/**/*.ts'",
"posttest": "run-s coverage:html coverage:lcov",
"prebuild": "run-s clean:target test",
"pretest": "run-s clean:coverage lint",
"server": "cross-env NODE_ENV=development nodemon -w 'server/**/*.*' ./server/main.js",
"server:dev": "cross-env NODE_ENV=development webpack-dev-server",
"start": "npm run server:dev",
"test": "cross-env NODE_ENV=test karma start --single-run --coverage",
"test:watch": "cross-env NODE_ENV=test karma start --reporters dots"
},
"dependencies": {
"@angular/common": "2.0.0",
"@angular/compiler": "2.0.0",
"@angular/core": "2.0.0",
"@angular/forms": "2.0.0",
"@angular/platform-browser": "2.0.0",
"@angular/platform-browser-dynamic": "2.0.0",
"@angular/router": "3.0.0",
"angularfire2": "2.0.0-beta.5",
"core-js": "~2.4.1",
"firebase": "3.3.0",
"rxjs": "5.0.0-beta.12",
"zone.js": "~0.6.25"
},
"devDependencies": {
"@types/core-js": "~0.9.33",
"@types/jasmine": "~2.2.34",
"@types/node": "~6.0.39",
"@types/request": "0.0.30",
"autoprefixer": "~6.4.1",
"coveralls": "~2.11.14",
"cross-env": "~2.0.1",
"css-loader": "~0.25.0",
"del-cli": "~0.2.0",
"eslint": "~3.5.0",
"express": "~4.14.0",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"firebase-tools": "3.0.7",
"html-webpack-plugin": "~2.22.0",
"istanbul-instrumenter-loader": "~0.2.0",
"jasmine-core": "~2.5.2",
"karma": "~1.3.0",
"karma-chrome-launcher": "~2.0.0",
"karma-coverage": "~1.1.1",
"karma-jasmine": "~1.0.2",
"karma-mocha-reporter": "~2.2.0",
"karma-sourcemap-loader": "~0.3.7",
"karma-webpack": "~1.8.0",
"minx": "r-park/minx.git",
"morgan": "~1.7.0",
"node-sass": "~3.10.0",
"nodemon": "~1.10.2",
"npm-run-all": "~3.1.0",
"postcss-loader": "~0.13.0",
"raw-loader": "~0.5.1",
"remap-istanbul": "~0.6.4",
"sass-loader": "~4.0.2",
"style-loader": "~0.13.1",
"ts-helpers": "~1.1.1",
"ts-loader": "~0.8.2",
"tslint": "~3.15.1",
"typescript": "~2.0.2",
"typings": "~1.3.3",
"webpack": "2.1.0-beta.22",
"webpack-dev-server": "2.1.0-beta.4",
"webpack-md5-hash": "~0.0.5",
"winston": "~2.2.0",
"yargs": "~5.0.0"
},
"author": {
"name": "Richard Park",
"email": "objectiv@gmail.com"
},
"contributors": [
{"name": "Cody Lundquist", "email": "cody.lundquist@gmail.com"},
{"name": "Jason Shultz", "email": ""},
{"name": "Sinan Bolel", "email": "sinanbolel@gmail.com"}
]
}