-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.27 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "omdb-search-react-app",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .js,.jsx",
"lint:fix": "eslint . --fix --ext .js,.jsx",
"coverage": "vitest run --coverage",
"test": "vitest run",
"test:watch": "vitest --coverage --watch",
"test:ui": "vitest --ui",
"generate-docs": "jsdoc -c jsdoc.json",
"predeploy": "npm run build && touch dist/.nojekyll",
"deploy": "gh-pages -d dist -t true"
},
"dependencies": {
"clsx": "1.2.1",
"just-debounce-it": "3.2.0",
"just-safe-get": "4.2.0",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.8.0"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@types/react": "18.0.29",
"@types/react-dom": "18.0.11",
"@vitejs/plugin-react-swc": "3.2.0",
"@vitest/coverage-c8": "0.29.7",
"@vitest/ui": "0.29.7",
"clean-jsdoc-theme": "4.2.6",
"eslint": "8.36.0",
"eslint-config-standard-jsx": "11.0.0",
"eslint-config-standard-react": "13.0.0",
"gh-pages": "5.0.0",
"happy-dom": "8.9.0",
"jsdoc": "4.0.2",
"jsdoc-plugin-typescript": "2.2.1",
"jsdom": "21.1.1",
"standard": "17.0.0",
"vite": "4.2.1",
"vite-plugin-html": "3.2.0",
"vitest": "0.29.7"
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"./node_modules/standard/eslintrc.json",
"./node_modules/eslint-config-standard-jsx/eslintrc.json",
"./node_modules/eslint-config-standard-react/eslintrc.json",
"plugin:react/jsx-runtime"
],
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {
"jsx-quotes": [
"error",
"prefer-double"
],
"space-before-function-paren": [
"error",
{
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}
]
}
},
"eslintIgnore": [
"node_modules/",
"dist/**",
"dist-ssr/**",
"docs/**"
],
"prettier": {
"singleQuote": true,
"jsxSingleQuote": false,
"semi": false,
"trailingComma": "none"
}
}