forked from kriasoft/react-firebase-starter
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
98 lines (98 loc) · 3.18 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
{
"name": "react-static-boilerplate",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=6.5",
"npm": ">=3.10"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.5",
"es5-shim": "^4.5.9",
"es6-promise": "^4.1.1",
"fetch-detector": "^1.0.1",
"fetch-ie8": "^1.5.0",
"fetch-jsonp": "^1.1.3",
"history": "^2.1.2",
"prop-types": "^15.6.0",
"react": "^0.14.9",
"react-dom": "^0.14.9",
"react-redux": "^4.4.8",
"react-router": "2.3.0",
"react-router-redux": "^4.0.8",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0"
},
"scripts": {
"eslint": "eslint src/**/*.js tools/**/*.js",
"stylelint": "stylelint src/components/**/*.css src/routes/**/*.css",
"lint": "npm run eslint && npm run stylelint",
"test": "mocha --compilers js:babel-register",
"test:watch": "mocha --compilers js:babel-register --reporter min --watch",
"clean": "node tools/clean",
"build": "node tools/build --release",
"build:debug": "node tools/build",
"start": "node tools/start"
},
"devDependencies": {
"autoprefixer": "^7.1.5",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^6.4.1",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-modules-literals": "0.0.3",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"browser-sync": "^2.18.13",
"chai": "^4.1.2",
"css-loader": "^0.28.7",
"del": "^3.0.0",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^1.1.5",
"fs-extra": "^4.0.1",
"html-webpack-plugin": "^2.30.1",
"json-loader": "^0.5.7",
"mocha": "^4.0.1",
"node-sass": "^4.5.3",
"pixrem": "^4.0.1",
"pleeease-filters": "^4.0.0",
"postcss": "^6.0.13",
"postcss-calc": "^6.0.1",
"postcss-color-function": "^4.0.0",
"postcss-custom-media": "^6.0.0",
"postcss-custom-properties": "^6.2.0",
"postcss-custom-selectors": "^4.0.1",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"postcss-media-minmax": "^3.0.0",
"postcss-nesting": "^4.2.1",
"postcss-selector-matches": "^3.0.1",
"postcss-selector-not": "^3.0.1",
"react-hot-loader": "^3.1.1",
"redbox-react": "^1.5.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"stylelint": "^8.1.1",
"stylelint-config-standard": "^17.0.0",
"url-loader": "^0.6.2",
"webpack": "^1.15.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.19.1"
}
}