-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
121 lines (121 loc) · 2.94 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "react-seed",
"version": "1.1.0",
"description": "Initial directory structure and package.json as a seed for new React based projects.",
"scripts": {
"dev": "node devServer.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/andrewcoelho/react-seed"
},
"bugs": {
"url": "https://github.com/andrewcoelho/react-seed/issues"
},
"homepage": "https://github.com/andrewcoelho/react-seed#readme",
"keywords": [
"seed",
"boilerplate",
"react",
"redux",
"es6",
"babel",
"hot",
"webpack"
],
"main": "index.js",
"author": "Andrew Coelho <[email protected]> (http://andrewcoelho.com)",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "7.1.1",
"babel-loader": "7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "6.22.0",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "6.22.0",
"babel-register": "6.22.0",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.0.1",
"eslint-plugin-import": "2.4.0",
"eslint-plugin-jsx-a11y": "5.0.3",
"eslint-plugin-react": "7.0.1",
"webpack": "3.0.0",
"webpack-dev-server": "2.4.5"
},
"dependencies": {
"prop-types": "^15.5.10",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-hot-loader": "3.0.0-beta.6",
"react-redux": "5.0.2",
"react-router-dom": "4.1.1",
"redux": "3.6.0",
"redux-saga": "0.14.3"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"browsers": [
"last 2 versions"
]
}
}
],
"react"
],
"plugins": [
"react-hot-loader/babel",
"transform-class-properties",
"transform-export-extensions",
"transform-object-rest-spread"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"rules": {
"arrow-parens": [
2,
"as-needed",
{
"requireForBlockBody": false
}
],
"comma-dangle": [
2,
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "never"
}
],
"global-require": 0,
"import/extensions": 0,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"import/no-webpack-loader-syntax": 0,
"max-len": [
2,
{
"code": 80,
"ignoreStrings": true,
"ignoreTemplateLiterals": true,
"ignoreTrailingComments": true,
"ignoreUrls": true
}
],
"no-underscore-dangle": 0,
"react/forbid-prop-types": 0,
"react/jsx-filename-extension": 0
}
}
}