-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.02 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.02 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
65
66
67
68
{
"name": "robot-viewer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest",
"start": "node build/index.js",
"test:watch": "jest --watch",
"test:watch:debug": "DEBUG='ik:.*' jest --watch",
"build": "vite build",
"start:dev": "concurrently --raw \"npm run client:local\" \" DEBUG='robot:.*' npm run server:local\"",
"client:local": "vite",
"server:local": "NODE_ENV=development nodemon -r dotenv/config src/server/index.js",
"build:docker": "docker build -t robot-viewer .",
"run:docker": "docker run --env-file=.env -p 3000:3000 robot-viewer"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.20.0",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"d3": "^7.6.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"kinematics-js": "^1.0.5",
"mathjs": "^12.4.2",
"react-spring": "^9.7.0",
"request": "^2.88.2",
"socket.io": "^4.5.1",
"websocket": "^1.0.34",
"winston": "^3.3.3"
},
"devDependencies": {
"@adobe/react-spectrum": "^3.24.1",
"@babel/preset-env": "^7.23.3",
"@react-spring/three": "^9.7.0",
"@react-three/drei": "^9.17.1",
"@react-three/fiber": "^8.2.0",
"@spectrum-css/page": "^5.0.15",
"@spectrum-css/sidenav": "^3.0.30",
"@spectrum-css/typography": "^4.0.25",
"@spectrum-css/vars": "^8.0.3",
"@spectrum-icons/workflow": "^4.1.0",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.5",
"@use-gesture/react": "^10.2.17",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^5.3.0",
"eslint": "^8.18.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"informed": "^4.60.3",
"jest": "^29.7.0",
"msw": "^0.28.0",
"nodemon": "^2.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"socket.io-client": "^4.5.1",
"supertest": "^6.1.3",
"three": "^0.142.0",
"vite": "^5.0.12"
}
}