-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.67 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
{
"name": "lisudoku_frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@honeybadger-io/js": "^5.1.1",
"@honeybadger-io/react": "^5.1.2",
"@material-tailwind/react": "^2.1.2",
"@rails/actioncable": "^7.0.4",
"@react-hook/window-size": "^3.1.1",
"@reduxjs/toolkit": "^1.9.0",
"axios": "^1.1.3",
"axios-request-throttle": "^1.0.0",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"final-form": "^4.20.7",
"html2canvas": "^1.4.1",
"lisudoku-solver": "0.1.25",
"lodash-es": "^4.17.21",
"lz-string": "^1.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-final-form": "^6.5.9",
"react-helmet-async": "^2.0.4",
"react-redux": "^8.0.5",
"react-router-dom": "^6.4.3",
"react-useinterval": "^1.0.2",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"sudoku-formats": "^1.0.4",
"use-react-screenshot": "^4.0.0",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "vite dev",
"build:dev": "tsc && VITE_CJS_IGNORE_WARNING=true vite build --mode development",
"serve": "vite preview",
"lint": "eslint src",
"build:prod": "yarn build:dev --mode production",
"deploy": "yarn build:prod && netlify deploy --dir build --prod",
"analyze": "vite-bundle-visualizer -t sunburst"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@honeybadger-io/rollup-plugin": "^5.9.1",
"@types/is-base64": "^1.1.1",
"@types/lodash-es": "^4.17.12",
"@types/lz-string": "^1.3.34",
"@types/node": "^16.18.3",
"@types/rails__actioncable": "^6.1.6",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/redux-logger": "^3.0.9",
"@vitejs/plugin-legacy": "^5.4.1",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"tailwindcss-themer": "^4.0.0",
"typescript": "^4.8.4",
"vite": "^5.1.3",
"vite-bundle-visualizer": "^1.0.1",
"vite-plugin-pwa": "^0.19.0",
"vite-plugin-svgr": "^4.2.0",
"vite-plugin-top-level-await": "^1.4.1",
"vite-plugin-wasm": "^3.3.0",
"vite-tsconfig-paths": "^4.3.1"
}
}