-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.48 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
{
"name": "redux-tuto",
"version": "0.1.3",
"description": "Redux tutorial",
"main": "index.js",
"scripts": {
"start": "parcel ./es6/index.html",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daengdaengLee/redux-tuto.git"
},
"keywords": [
"redux"
],
"author": "daengdaenglee",
"license": "MIT",
"bugs": {
"url": "https://github.com/daengdaengLee/redux-tuto/issues"
},
"homepage": "https://github.com/daengdaengLee/redux-tuto#readme",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"babel-eslint": "^9.0.0",
"eslint": "^5.9.0",
"eslint-config-react-app": "^3.0.5",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"parcel-bundler": "^1.10.3"
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"quotes": [
"error",
"single",
{
"avoidEscape": true
}
],
"indent": [
"error",
2
],
"semi": [
"error",
"always"
],
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "always-multiline"
}
]
}
}
}