-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.96 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
59
60
61
62
63
64
65
66
67
{
"name": "react-redux-example",
"version": "2.0.0",
"description": "React Redux Example",
"engines": {
"node": ">7.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/alyssaq/react-redux-table-example"
},
"license": "MIT",
"scripts": {
"start": "node server.js",
"dev": "node dev-server.js",
"build": "rm -rf build && cp -pr src/static/ build && webpack",
"lint": "eslint ./src ./tests *.js",
"test": "npm run lint && mocha tests --recursive -r babel-core/register",
"test:dev": "mocha tests --recursive -r babel-core/register -w"
},
"dependencies": {
"autoprefixer": "^7.1.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"express": "^4.14.1",
"fixed-data-table-2": "^0.7.17",
"lodash": "^4.17.4",
"prop-types": "^15.5.8",
"react": "^15.6.1",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"redux": "^3.7.0",
"redux-thunk": "^2.2.0",
"shrink-ray": "^0.1.3",
"stylus": "^0.54.5"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"chai": "^4.0.2",
"css-loader": "^0.28.0",
"eslint": "^4.1.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.4.2",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^3.3.0",
"postcss-loader": "^2.0.6",
"react-hot-loader": "^1.3.1",
"redux-logger": "^3.0.6",
"style-loader": "^0.18.2",
"stylus-loader": "^3.0.1",
"url-loader": "^0.5.7",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.0"
}
}