-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.63 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
{
"name": "openscad-web-gui",
"version": "0.0.1",
"description": "Web GUI for Openscad WASM",
"author": "",
"browser": "src/app.tsx",
"scripts": {
"build": "node esbuild.mjs",
"corsproxy": "scripts/cors-proxy.js",
"dev": "CORSPROXY=http://localhost:8888/ node esbuild.mjs --serve --watch --cors-proxy",
"lint": "eslint . --ext .ts,.tsx",
"prettier": "prettier . --write",
"serve": "node esbuild.mjs --serve",
"test": "jest",
"test:e2e": "cypress run",
"watch": "node esbuild.mjs --watch"
},
"license": "UNLICENSED",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/three": "^0.163.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"cors-anywhere": "^0.4.4",
"cypress": "^13.6.4",
"cypress-multi-reporters": "^1.6.4",
"cypress-terminal-report": "^6.0.2",
"cypress-visual-regression": "^5.0.0",
"esbuild": "0.20.1",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-plugin-replace": "^1.4.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"prettier": "^3.3.2",
"ts-jest": "^29.1.2"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.8",
"@mui/icons-material": "^5.15.7",
"@mui/material": "^5.15.7",
"@mui/x-tree-view": "^7.7.0",
"@react-three/drei": "^9.106.0",
"@react-three/fiber": "^8.16.8",
"@zip.js/zip.js": "^2.7.36",
"mui-chips-input": "^2.1.3",
"notistack": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"three": "^0.163.0"
}
}