-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.34 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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "daybed-guide",
"displayName": "Daybed",
"version": "1.0.0",
"description": "A generic working out of the box React-Redux Developers Enviorment",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build:dev": "npm run clean && webpack --config webpack/webpack.config.js",
"build": "npm run clean && webpack -p --config webpack/webpack.config.js",
"lint": "eslint . --ext=js ext=jsx --fix",
"start": "webpack-dev-server --config webpack/webpack.config.js --hot --inline",
"validate": "npm ls --depth=0",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HaidenD/Daybed-Guide.git"
},
"keywords": [
"React",
"Redux",
"React-Redux"
],
"author": "Haiden Deaton",
"license": "MIT",
"bugs": {
"url": "https://github.com/HaidenD/Daybed-Guide/issues"
},
"homepage": "https://github.com/HaidenD/Daybed-Guide#readme",
"dependencies": {
"es6-promise": "^4.1.1",
"lodash": "^4.10.0",
"react": "^15.3.2",
"react-bootstrap": "^0.31.3",
"react-dom": "^15.3.2",
"react-hot-loader": "^3.1.1",
"react-redux": "^5.0.3",
"react-router": "^2.6.0",
"react-router-redux": "^4.0.4",
"redux": "^3.4.0",
"redux-saga": "^0.14.3",
"semantic-ui-react": "^0.75.1"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.1.10",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"css-loader": "^0.26.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "5.0.1",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-react": "7.0.1",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.0",
"html-webpack-plugin": "^2.28.0",
"json-loader": "^0.5.4",
"less": "^2.6.0",
"less-loader": "^2.2.3",
"lodash.remove": "^4.7.0",
"postcss-loader": "^1.3.2",
"redbox-react": "^1.2.4",
"redux-logger": "2.4.0",
"rimraf": "^2.5.2",
"style-loader": "^0.13.2",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1",
"webpack-merge": "^3.0.0"
}
}