This repository has been archived by the owner on Aug 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.97 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "firepack-app",
"version": "0.0.0-semantically-released",
"description": "Kickstart your Firepack application development",
"scripts": {
"build": "NODE_ENV=production webpack --optimize-minimize --progress --colors",
"check": "npm run check:eslint && npm run check:flow && npm run check:coverage",
"check:coverage": "nyc --reporter=html --report-dir=public/coverage --check-coverage --statements=100 --branches=100 --functions=100 --lines=100 npm run test",
"check:eslint": "eslint src test",
"check:flow": "flow",
"commit": "git-cz",
"deploy": "firebase deploy",
"server": "firebase serve",
"start": "webpack-dev-server --inline --hot --progress --colors --port=8888",
"tdd": "npm run test -- --watch",
"test": "mocha --recursive --compilers=js:babel-core/register --require=jsdom-global/register"
},
"repository": {
"type": "git",
"url": "https://github.com/bulicmatko/firepack-app.git"
},
"keywords": [
"kickstart",
"firepack",
"firebase",
"application",
"react",
"redux"
],
"author": "Matko Bulic <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/bulicmatko/firepack-app",
"bugs": {
"url": "https://github.com/bulicmatko/firepack-app/issues"
},
"dependencies": {
"firebase": "^3.4.1",
"firepack": "^0.1.3",
"immutable": "^3.8.1",
"lodash": "^4.13.1",
"react": "^15.2.0",
"react-css-modules": "^3.7.7",
"react-dom": "^15.2.0",
"react-redux": "^4.4.5",
"react-router": "^2.5.2",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"reselect": "^2.5.3"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"bourbon": "^4.2.7",
"chai": "^3.5.0",
"chai-immutable": "^1.6.0",
"commitizen": "^2.8.2",
"css-loader": "^0.23.1",
"cz-conventional-changelog": "^1.1.6",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"firebase-tools": "^3.0.4",
"flow-bin": "^0.28.0",
"ghooks": "^1.3.2",
"jsdom": "9.4.1",
"jsdom-global": "2.0.0",
"mocha": "^2.5.3",
"mocha-jsdom": "^1.1.0",
"node-sass": "^3.8.0",
"nyc": "^7.0.0",
"resolve-url-loader": "^1.6.0",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"config": {
"ghooks": {
"pre-commit": "npm run check"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=4.2.1 <6",
"npm": ">=3.10.3 <4"
}
}