forked from bonnie/react-hooks-tips-only-the-pros-know
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.7 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
{
"name": "react-hooks-tips-only-the-pros-know2",
"version": "0.0.0",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"compile": "eslint src/**/*.ts?",
"eslint": "eslint src/**/*.ts?",
"prettier": "prettier --write ."
},
"dependencies": {
"bootstrap": "^4.6.0",
"classnames": "^2.3.1",
"localforage": "^1.9.0",
"react": "^17.0.0",
"react-bootstrap": "^1.5.2",
"react-dom": "^17.0.0",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@rollup/plugin-eslint": "^8.0.1",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"@vitejs/plugin-react-refresh": "^1.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.2.1",
"typescript": "^4.1.2",
"vite": "^2.1.5"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"project": "./tsconfig.json",
"extraFileExtensions": [
".mjs"
],
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"browser": true,
"node": true
},
"settings": {
"react": {
"version": "detect"
}
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended"
],
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"react/prop-types": "off"
}
}
}