-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.84 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.84 KB
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
{
"name": "admin-client",
"version": "1.0.1",
"description": "A simple react-redux admin client and a starter kit to jumpstart development of react-redux application with a dev server and webpack in place",
"main": "index.js",
"author": "kamal@konfinity.com",
"license": "MIT",
"scripts": {
"start": "concurrently -k -r -s first \"npm run open:src\" \"npm run lint:watch\"",
"open:src": "babel-node tools/srcServer.js",
"lint": "esw webpack.config.* src tools",
"lint:watch": "npm run lint -- --watch"
},
"dependencies": {
"font-awesome": "^4.7.0",
"html-webpack-plugin": "^3.2.0",
"prop-types": "^15.6.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-router-redux": "5.0.0-alpha.6",
"redux": "^3.7.2",
"redux-immutable-state-invariant": "^2.1.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-1": "^6.24.1",
"browser-sync": "^2.23.6",
"concurrently": "^3.5.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-react": "^7.7.0",
"eslint-watch": "^3.1.4",
"file-loader": "^1.1.11",
"history": "^4.7.2",
"node-sass": "^4.8.3",
"postcss-loader": "^2.1.3",
"react-hot-loader": "^4.0.1",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"url-loader": "^1.0.1",
"webpack": "^4.5.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-dev-middleware": "^3.1.0",
"webpack-hot-middleware": "^2.21.2",
"webpack-md5-hash": "^0.0.6"
}
}