forked from kriasoft/react-firebase-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.29 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "app",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=6",
"npm": ">=3.8"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"classnames": "^2.2.5",
"fastclick": "^1.0.6",
"history": "^4.6.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-mdl": "^1.9.0",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"assets-webpack-plugin": "^3.5.1",
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.4.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-latest": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-1": "^6.22.0",
"babel-register": "^6.24.0",
"babel-runtime": "^6.23.0",
"browser-sync": "^2.18.8",
"chai": "^4.0.0-canary.1",
"connect-history-api-fallback": "^1.3.0",
"css-loader": "^0.27.3",
"ejs": "^2.5.6",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.2",
"file-loader": "^0.10.1",
"firebase-tools": "^3.5.0",
"front-matter": "^2.1.2",
"highlight.js": "^9.10.0",
"json-loader": "^0.5.4",
"markdown-it": "^8.3.1",
"mocha": "^3.2.0",
"path-to-regexp": "^1.7.0",
"pixrem": "^3.0.2",
"pleeease-filters": "^3.0.1",
"postcss": "^5.2.16",
"postcss-calc": "^5.3.1",
"postcss-color-function": "^3.0.0",
"postcss-custom-media": "^5.0.1",
"postcss-custom-properties": "^5.0.2",
"postcss-custom-selectors": "^3.0.0",
"postcss-flexbugs-fixes": "^2.1.0",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.3.3",
"postcss-media-minmax": "^2.1.2",
"postcss-nesting": "^2.3.1",
"postcss-selector-matches": "^2.0.5",
"postcss-selector-not": "^2.0.0",
"react-hot-loader": "^3.0.0-beta.2",
"rimraf": "^2.6.1",
"s3": "^4.4.0",
"style-loader": "^0.14.1",
"stylelint": "^7.9.0",
"stylelint-config-standard": "^16.0.0",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.1"
},
"babel": {
"presets": [
"latest",
"stage-1",
"react"
],
"plugins": [
"transform-runtime"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"rules": {
"react/jsx-filename-extension": "off",
"react/require-default-props": "off",
"import/no-extraneous-dependencies": "off"
},
"env": {
"browser": true
}
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"string-quotes": "single"
}
},
"scripts": {
"eslint": "eslint components src test tools postcss.config.js webpack.config.js",
"stylelint": "stylelint \"components/**/*.css\" \"src/**/*.css\"",
"lint": "npm run eslint && npm run stylelint",
"test": "mocha --compilers js:babel-register",
"test:watch": "mocha --compilers js:babel-register --reporter min --watch",
"build": "node tools/build.js",
"build:debug": "node tools/build.js --debug",
"publish": "node tools/publish.js",
"publish:debug": "node tools/publish.js --debug",
"start": "node tools/run.js"
}
}