-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.92 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
{
"name": "text-engraving",
"version": "24.4.1",
"private": true,
"author": "Wandelbots GmbH",
"license": "Apache-2.0",
"scripts": {
"dev": "nodemon -e \"env,local\" -w .env -w .env.local -w \".\" -x next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"typecheck": "tsc --pretty --noEmit",
"checks": "run-s --continue-on-error lint prettier:check typecheck",
"checks:fix": "run-s lint:fix prettier:fix",
"prettier:check": "prettier . --check",
"prettier:fix": "prettier . --write"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fontsource/inter": "^5.0.18",
"@mui/icons-material": "^5.15.15",
"@mui/material": "^5.15.15",
"@next/eslint-plugin-next": "^14.2.3",
"@react-spring/three": "^9.7.3",
"@react-three/drei": "^9.105.4",
"@react-three/fiber": "^8.16.2",
"@types/lodash-es": "^4.17.12",
"@wandelbots/wandelbots-api-client": "^24.2.2",
"@wandelbots/wandelbots-js": "^1.11.1",
"@wandelbots/wandelbots-js-react-components": "^1.24.2",
"autoprefixer": "^10.4.19",
"eslint-plugin-react-hooks": "^4.6.2",
"lodash-es": "^4.17.21",
"mobx": "^6.12.3",
"mobx-react-lite": "^4.0.7",
"next": "^14.2.3",
"react": "^18",
"react-dom": "^18",
"reconnecting-websocket": "^4.4.0",
"sharp": "^0.33.4",
"tailwindcss": "^3.4.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "20.14.9",
"@types/react": "^18",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-i18next": "^6.0.3",
"eslint-plugin-react-refresh": "^0.4.6",
"nodemon": "^3.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.39",
"prettier": "^3.2.5",
"tsx": "^4.7.2",
"typescript": "5.5.2"
}
}