-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·64 lines (64 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·64 lines (64 loc) · 2.19 KB
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
{
"name": "robot-web-controller",
"private": true,
"version": "0.3.1-alpha",
"type": "module",
"scripts": {
"dev": "vite --config config/vite.config.ts --host",
"build": "tsc && vite build --config config/vite.config.ts",
"lint": "eslint . --ext ts,tsx --max-warnings 0",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\"",
"preview": "vite preview --config config/vite.config.ts --host",
"test": "vitest --config config/vitest.config.ts",
"test:run": "vitest run --config config/vitest.config.ts",
"test:coverage": "vitest run --config config/vitest.config.ts --coverage",
"e2e": "playwright test --config config/playwright.config.ts",
"e2e:stack": "playwright test --config config/playwright.config.ts",
"e2e:ui": "playwright test --config config/playwright.config.ts --ui",
"e2e:report": "playwright show-report playwright-report"
},
"dependencies": {
"@types/lodash-es": "^4.17.12",
"@types/three": "^0.160.0",
"animejs": "^3.2.1",
"lodash-es": "^4.17.21",
"png-to-ico": "^2.1.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.2.1",
"react-joystick-component": "^6.2.1",
"reactflow": "^11.11.4",
"roslib": "^1.4.1",
"three": "^0.160.0",
"uuid": "^14.0.0"
},
"overrides": {
"@xmldom/xmldom": "^0.9.10",
"@rollup/plugin-terser": "^1.0.0"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-istanbul": "^4.0.15",
"@vitest/coverage-v8": "^4.0.15",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"jsdom": "^25.0.1",
"prettier": "^3.7.4",
"sharp": "^0.34.2",
"typescript": "^5.2.2",
"vite": "^6.3.5",
"vite-plugin-mkcert": "^1.17.8",
"vite-plugin-pwa": "^1.0.0",
"vitest": "^4.0.15"
}
}