-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
69 lines (69 loc) · 2.12 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": "camera-chess",
"description": "Camera Chess web app",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "vite",
"build": "tsc && eslint src --report-unused-disable-directives --max-warnings 0 && vite build",
"lint": "eslint src --report-unused-disable-directives --max-warnings 0",
"tsc": "tsc",
"preview": "vite preview",
"deploy": "gh-pages -d dist"
},
"license": "MIT",
"dependencies": {
"@bity/oauth2-auth-code-pkce": "^2.13.0",
"@capacitor/core": "^6.1.2",
"@popperjs/core": "^2.11.8",
"@react-hook/window-size": "^3.1.1",
"@reduxjs/toolkit": "^2.2.7",
"@tensorflow/tfjs-backend-webgl": "^4.20.0",
"@tensorflow/tfjs-converter": "^4.20.0",
"@tensorflow/tfjs-core": "^4.20.0",
"@types/react-redux": "^7.1.33",
"@types/react-router-dom": "^5.3.3",
"@types/redux": "^3.6.0",
"@types/redux-persist": "^4.3.1",
"bootstrap": "^5.3.3",
"chess.js": "^1.0.0-beta.6",
"delaunator": "^5.0.1",
"iframe-resizer-react": "^5.1.5",
"kokopu-react": "^3.3.0",
"mathjs": "^13.0.3",
"normalize.css": "^8.0.1",
"numeric": "^1.2.6",
"react": "^18.3.1",
"react-bootstrap": "^2.10.4",
"react-dom": "^18.3.1",
"react-draggable": "^4.4.6",
"react-faq-component": "^1.3.4",
"react-redux": "^9.1.2",
"react-responsive": "^10.0.0",
"react-router-dom": "^6.26.1",
"react-social-icons": "^6.18.0",
"redux-persist": "^6.0.0",
"vectorious": "^6.1.14",
"vite-plugin-pwa": "^0.20.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@types/delaunator": "^5.0.3",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@types/vectorious": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.9.1",
"eslint-plugin-react": "^7.35.0",
"gh-pages": "^6.1.1",
"globals": "^15.9.0",
"source-map-loader": "^5.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vite-bundle-visualizer": "1.0.0"
}
}