-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 1.84 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
70
71
72
73
74
75
76
77
78
79
{
"name": "blingmything",
"description": "Add decorations to 3D models",
"scripts": {
"start": "vite",
"build": "vite build",
"serve": "vite preview"
},
"dependencies": {
"@react-three/drei": "8.7.3",
"@react-three/fiber": "7.0.25",
"comlink": "^4.3.1",
"d3-delaunay": "^6.0.2",
"file-saver": "^2.0.5",
"jszip": "^3.7.1",
"mobx": "^6.4.2",
"mobx-react": "^7.3.0",
"mobx-state-tree": "^5.1.3",
"moize": "^6.1.0",
"mst-middlewares": "^5.1.3",
"path-data-parser": "^0.1.0",
"polished": "^4.1.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^12.0.4",
"react-portal": "^4.2.2",
"replicad": "0.14.3",
"replicad-decorate": "^0.1.0",
"replicad-opencascadejs": "0.14.3",
"replicad-threejs-helper": "0.14.0",
"styled-components": "^5.3.3",
"three": "0.137.0",
"xmldom": "^0.6.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-react": "^7.16.7",
"@vitejs/plugin-react": "^1.0.7",
"babel-plugin-macros": "^3.1.0",
"eslint": "^8.10.0",
"eslint-plugin-react": "^7.29.2",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.4.1",
"vite": "^2.6.13"
},
"browserslist": [
">0.2%",
"not dead"
],
"eslintConfig": {
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended"
],
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": true
},
"parser": "@babel/eslint-parser",
"rules": {
"react/prop-types": "off",
"@typescript-eslint/no-explicit-any": "off"
}
},
"babel": {
"presets": [
"@babel/preset-react"
],
"plugins": [
"macros"
]
}
}