-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.48 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
{
"name": "parsel-react-redux-example",
"version": "1.0.0",
"engines": {
"node": "8.9.4",
"yarn": "1.3.2"
},
"main": "index.js",
"repository": "[email protected]:firec0der/parsel-react-redux-example.git",
"author": "Ivan Stetsenko <[email protected]>",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=development parcel ./public/index.html --no-cache",
"eslint": "eslint src",
"build": "rm -fr dist && cross-env NODE_ENV=production parcel build ./public/index.html --no-cache --public-url /"
},
"dependencies": {
"axios": "0.18.0",
"babel-polyfill": "6.26.0",
"bootstrap-sass": "3.3.7",
"classnames": "2.2.5",
"prop-types": "15.6.1",
"react": "16.2.0",
"react-bootstrap": "0.32.1",
"react-dom": "16.2.0",
"react-redux": "5.0.7",
"react-router-dom": "4.2.2",
"react-svg-inline": "2.1.0",
"redux": "3.7.2",
"redux-act": "1.7.3",
"redux-saga": "0.16.0"
},
"devDependencies": {
"babel-eslint": "8.2.2",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-3": "6.24.1",
"cross-env": "5.1.3",
"eslint": "4.18.2",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.7.0",
"node-sass": "4.7.2",
"parcel-bundler": "1.6.2",
"parcel-plugin-inlinesvg": "0.0.12",
"postcss-modules": "1.1.0"
}
}