-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.37 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
{
"name": "3mf-color-changer",
"version": "0.0.1",
"description": "Web Tool for changing the color of objects in 3mf files",
"author": "",
"browser": "src/app.tsx",
"scripts": {
"build": "node build.mjs",
"lint": "eslint src",
"prettier": "prettier . --write",
"serve": "node build.mjs --serve --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "node build.mjs --watch"
},
"license": "UNLICENSED",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.13.0",
"esbuild": "0.23.0",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-plugin-replace": "^1.4.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.34.3",
"prettier": "^3.2.4",
"typescript": "5.3.3"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.8",
"@mui/icons-material": "^5.15.11",
"@mui/material": "^5.15.19",
"@react-three/drei": "^9.97.0",
"@react-three/fiber": "^8.15.15",
"@types/three": "^0.163.0",
"@zip.js/zip.js": "^2.7.36",
"notistack": "^3.0.1",
"react": "^18.2.0",
"react-colorful": "^5.6.1",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-router-dom": "^6.22.2",
"three": "^0.163.0"
}
}