-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.06 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.06 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
{
"name": "reactstack",
"version": "0.0.1",
"description": "React Stack Base Template",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config ./webpack/config.dev.js --color --progress",
"build": "webpack --config ./webpack/config.prod.js --progress",
"eslint": "eslint --fix app/ --ext .js --color",
"doc": "esdoc -c .esdoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ratheeshkannan/reactStack.git"
},
"keywords": [
"reactstack"
],
"author": "Ratheesh Kannan",
"license": "MIT",
"bugs": {
"url": "https://github.com/ratheeshkannan/reactStack/issues"
},
"homepage": "https://github.com/ratheeshkannan/reactStack#readme",
"dependencies": {
"lodash": "4.17.4",
"react": "16.2.0",
"react-dom": "16.2.0",
"redux": "3.7.2",
"redux-saga": "0.16.0"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-eslint": "8.2.1",
"babel-loader": "7.1.2",
"clean-webpack-plugin": "0.1.18",
"compression-webpack-plugin": "1.1.3",
"css-loader": "0.28.9",
"esdoc": "1.0.4",
"esdoc-brand-plugin": "1.0.0",
"esdoc-coverage-plugin": "1.1.0",
"esdoc-ecmascript-proposal-plugin": "1.0.0",
"esdoc-jsx-plugin": "1.0.0",
"esdoc-react-plugin": "1.0.1",
"esdoc-standard-plugin": "1.0.0",
"eslint": "4.16.0",
"eslint-config-airbnb": "16.1.0",
"eslint-loader": "1.9.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-lodash": "2.5.1",
"eslint-plugin-react": "7.6.1",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.6",
"html-webpack-plugin": "2.30.1",
"node-sass": "4.7.2",
"postcss-sass": "0.3.0",
"sass-loader": "6.0.6",
"style-loader": "0.20.1",
"stylefmt": "6.0.0",
"stylefmt-loader": "1.2.3",
"stylelint": "8.4.0",
"stylelint-config-standard": "18.0.0",
"stylelint-webpack-plugin": "0.10.1",
"uglifyjs-webpack-plugin": "1.1.6",
"webpack": "3.10.0",
"webpack-dev-server": "2.11.1",
"webpack-merge": "4.1.1"
}
}