forked from crijke/datenguideguide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.02 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.02 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "datenguide-wdc",
"version": "0.1.0",
"private": true,
"dependencies": {
"apollo-cache-inmemory": "1.6.1",
"apollo-client": "2.6.1",
"apollo-link-http": "1.5.14",
"bootstrap": "4.3.1",
"classnames": "2.2.6",
"flexsearch": "0.6.22",
"graphql": "14.3.1",
"graphql-tag": "2.10.1",
"lodash": "4.17.11",
"node-fetch": "2.6.0",
"node-sass": "4.12.0",
"prop-types": "15.7.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-redux": "7.0.3",
"react-scripts": "3.0.1",
"react-select": "3.0.4",
"react-syntax-highlighter": "10.3.0",
"reactstrap": "8.0.0",
"redux": "4.0.1",
"redux-form": "8.2.3",
"redux-starter-kit": "0.5.1",
"redux-thunk": "2.3.0",
"unfetch": "4.1.0"
},
"devDependencies": {
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "4.3.0",
"eslint-loader": "2.1.2",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-cypress": "2.2.1",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.13.0",
"prettier": "1.17.1"
},
"scripts": {
"dev": "react-scripts start",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"airbnb",
"prettier",
"prettier/react"
],
"parserOptions": {
"ecmaVersion": 7
},
"plugins": [
"cypress"
],
"parser": "babel-eslint",
"globals": {
"Teikei": true
},
"rules": {
"no-extra-semi": 2,
"semi": 0,
"react/jsx-filename-extension": 0,
"jsx-a11y/href-no-hash": [
0
]
},
"env": {
"browser": true,
"node": true,
"jest": true,
"cypress/globals": true
}
},
"prettier": {
"semi": false,
"singleQuote": true
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}