forked from stormdock/swapi-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.55 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": "swapi-react-example",
"description": "Simple interface build in React for instantly searching the Star Wars API",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --content-base public/ --config webpack/webpack.dev.js",
"build": "webpack --color --display-error-details --config webpack/webpack.prod.js",
"lint": "eslint --ext .js --ext .jsx .; exit 0"
},
"repository": {
"url": "[email protected]:robertbg/react-example.git",
"type": "git"
},
"author": "Rob BG <[email protected]>",
"license": "MIT",
"dependencies": {
"autoprefixer": "^6.5.3",
"css-loader": "^0.25.0",
"cssnano": "^3.8.0",
"extract-text-webpack-plugin": "v2.0.0-beta.4",
"isomorphic-fetch": "^2.2.1",
"node-sass": "^3.12.5",
"postcss-loader": "^1.1.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^4.4.6",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.1.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"svg-inline-loader": "^0.7.1",
"webpack": "2.1.0-beta.25"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"webpack-dev-server": "2.1.0-beta.10"
}
}