-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2 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
80
81
82
83
{
"name": "replicad-hws",
"description": "A webapp for the honeycomb wall storage",
"scripts": {
"start": "vite",
"build": "vite build",
"serve": "vite preview"
},
"dependencies": {
"@babel/core": "^7.23.7",
"@react-three/drei": "9.92.7",
"@react-three/fiber": "8.13.6",
"comlink": "^4.3.1",
"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": "^18.0.2",
"react-dom": "^18.0.2",
"react-dropzone": "^12.0.4",
"react-is": "^18.2.0",
"react-portal": "^4.2.2",
"react-use-rect": "^2.0.4",
"replicad": "0.15.3",
"replicad-opencascadejs": "^0.15.0",
"replicad-threejs-helper": "^0.15.0",
"styled-components": "^6.1.8",
"three": "^0.155.0",
"xmldom": "^0.6.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-react": "^7.16.7",
"@types/three": "^0.160.0",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@vitejs/plugin-react": "^1.0.7",
"eslint": "^8.10.0",
"eslint-plugin-react": "^7.29.2",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.4.1",
"typescript": "^5.3.3",
"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": "@typescript-eslint/parser",
"rules": {
"react/prop-types": "off",
"@typescript-eslint/no-explicit-any": "off"
}
},
"babel": {
"presets": [
"@babel/preset-react"
],
"plugins": [
"macros"
]
}
}