-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.5 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
{
"name": "WebRenderer",
"version": "1.0.0",
"description": "Robot dynamic simulation rendering using Three.js and pybullet",
"main": "index.js",
"scripts": {
"django-server": "cd backend && python manage.py runserver",
"pack": "npx webpack --mode development",
"start": "webpack serve --mode development",
"start::pack": "http-server -c1 --cors -o dist",
"start-examples": "concurrently \"parcel watch ./example/*.html --out-dir ./example/dev-bundle/ --public-url . --no-cache\" \"cd .. && static-server\"",
"build-examples": "parcel build ./example/*.html --out-dir ./example/bundle/ --public-url . --no-cache --no-source-maps --no-content-hash",
"start-example": "static-server -i example/bundle/index.html --cors '*'"
},
"keywords": [
"Three.js",
"Pybullet",
"Dynamic",
"Robot",
"3D Rendering"
],
"author": "Jiabin Pan",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"babel-jest": "^29.7.0",
"static-server": "^2.2.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.7.3",
"http-server": "^14.1.1"
},
"dependencies": {
"concurrently": "^8.2.2",
"jest": "^29.7.0",
"jsdom": "^24.0.0",
"node-fetch": "^3.3.2",
"parcel-bundler": "^1.12.5",
"three": "^0.134.0",
"ts-jest": "^29.1.2"
}
}