-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 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
66
67
68
69
70
71
{
"name": "airtable-block-link-by-fields",
"version": "1.1.7",
"license": "MIT",
"scripts": {
"lint": "eslint frontend test",
"format": "prettier --write \"{frontend,test}/*.{js,jsx,json,md}\"",
"format-ci": "prettier --check \"{frontend,test}/*.{js,jsx,json,md}\"",
"test": "ava"
},
"dependencies": {
"@airtable/blocks": "^1.10.2",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-virtualized-auto-sizer": "^1.0.6",
"react-window": "^1.8.6"
},
"devDependencies": {
"ava": "^3.12.1",
"eslint": "^8.9.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.3.0",
"esm": "^3.2.25",
"prettier": "^2.5.1",
"sinon": "^13.0.1"
},
"ava": {
"require": [
"esm"
]
},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"react",
"react-hooks"
],
"rules": {
"react/prop-types": 0,
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn"
},
"settings": {
"react": {
"version": "detect"
}
}
},
"prettier": {
"endOfLine": "lf",
"semi": false,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5"
}
}