forked from franxyzxyz/mediawiki-with-react-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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": "mediawiki-with-react-redux",
"version": "1.0.0",
"description": "SPA with react, redux, mediawiki api and more",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"bundle": "webpack-dev-server",
"start": "webpack & node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/franxyzxyz/mediawiki-with-react-redux.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/franxyzxyz/mediawiki-with-react-redux/issues"
},
"homepage": "https://github.com/franxyzxyz/mediawiki-with-react-redux#readme",
"dependencies": {
"babel-core": "*",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.9.1",
"css-loader": "^0.23.1",
"express": "^4.14.0",
"file-loader": "^0.9.0",
"jquery": "^3.0.0",
"lodash": "^4.13.1",
"node-sass": "^3.8.0",
"react": "^15.1.0",
"react-dom": "*",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"sass-loader": "^3.2.1",
"style-loader": "^0.13.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"npm-install-webpack-plugin": "^4.0.3",
"react-hot-loader": "^1.3.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.14.0"
}
}