-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.5 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.5 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
{
"name": "oledonline",
"private": true,
"version": "2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "yarn build:wasm && yarn build:react",
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"build:react": "vite build",
"build:wasm": "asc assembly/index.ts --exportRuntime --importMemory --transform as-bind -b public/oled-wasm.wasm"
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "^5.0.0-alpha.132",
"@mui/material": "^5.13.3",
"@mui/styles": "^5.13.2",
"@silvia-odwyer/photon": "^0.3.2",
"as-bind": "^0.8.2",
"color": "^4.2.3",
"file-saver": "^2.0.5",
"react": "^18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"typeface-roboto": "^1.1.13",
"typescript": "^5.1.3",
"use-debounce": "^9.0.4",
"zustand": "^4.3.8"
},
"devDependencies": {
"@assemblyscript/loader": "^0.27.5",
"@types/file-saver": "^2.0.5",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react-swc": "^3.0.0",
"assemblyscript": "0.19.23",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"vite": "^4.3.9",
"vite-plugin-top-level-await": "^1.3.1",
"vite-plugin-wasm": "^3.2.2",
"yarn-upgrade-all": "^0.7.2"
}
}