-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 963 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 963 Bytes
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
{
"name": "wasm-game-of-life",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"wasm": "wasm-pack build rust-wasm --target web",
"dev": "vite --port 3000",
"build": "vite build",
"preview": "vite preview --port 3000"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-simple-snackbar": "^1.1.11",
"react-toggle-dark-mode": "^1.1.1",
"rust-wasm": "file:./rust-wasm/pkg",
"vite-plugin-top-level-await": "^1.2.4",
"vite-plugin-wasm": "^3.2.1"
},
"devDependencies": {
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react-swc": "^3.0.0",
"eslint": "^8.34.0",
"eslint-config-allinone": "^1.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"vite": "^4.1.0"
}
}