-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.06 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.06 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
{
"name": "prismic-mini-page-builder",
"private": true,
"version": "1.1.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"types": "tsc",
"test": "vitest",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0",
"uuid": "9.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.7",
"@types/testing-library__jest-dom": "5.14.8",
"@types/uuid": "9.0.3",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"@vitejs/plugin-react": "4.0.3",
"@vitest/coverage-v8": "0.33.0",
"eslint": "8.44.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "0.4.3",
"jsdom": "22.1.0",
"prettier": "3.0.3",
"sass": "1.66.1",
"typescript": "5.1.6",
"vite": "4.4.3",
"vite-plugin-eslint": "1.8.1",
"vite-plugin-svgr": "3.2.0",
"vitest": "0.33.0"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"react-refresh",
"prettier"
],
"env": {
"browser": true,
"es2020": true
},
"rules": {
"react-refresh/only-export-components": "warn",
"no-unused-vars": "off",
"prettier/prettier": [
"warn",
{
"tabWidth": 2,
"singleQuote": false,
"trailingComma": "none",
"arrowParens": "avoid",
"endOfLine": "auto",
"semi": true
}
],
"@typescript-eslint/no-unused-vars": [
"warn"
]
}
}
}