-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
72 lines (72 loc) · 1.88 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
{
"name": "robotsim",
"version": "1.0.0",
"description": "Roboter Simulator für Webseiten",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "parcel serve ./index.html --out-dir dist/dev/",
"build-moodle": "cross-env-shell PUBLIC_URL=\"/rocksi\" parcel ./index.html --out-dir dist/build/ --public-url $PUBLIC_URL",
"build": "parcel ./index.html --out-dir dist/build/"
},
"author": "Nikolas Dahn",
"license": "ISC",
"dependencies": {
"@blockly/field-slider": "^2.1.19",
"@fortawesome/fontawesome-free": "^5.15.2",
"blockly": "^5.20210325.1",
"blocks": "^0.3.5",
"cannon-es": "^0.17.1",
"cannon-es-debugger": "^0.1.2",
"css-element-queries": "^1.2.3",
"fullik": "github:lo-th/fullik",
"js-interpreter": "^2.2.0",
"lozad": "^1.16.0",
"objects": "^0.3.0",
"parcel-bundler": "^1.12.4",
"path": "^0.12.7",
"split.js": "^1.6.2",
"temp-dir": "^2.0.0",
"three": "^0.129.0",
"typescript": "^4.3.2",
"uil": "github:lo-th/uil",
"urdf-loader": "^0.9.3",
"xacro-parser": "^0.3.1"
},
"browserslist": [
"since 2017-06"
],
"devDependencies": {
"@tweenjs/tween.js": "^18.6.4",
"@types/three": "^0.128.0",
"cross-env": "^7.0.3",
"cssnano": "^4.1.10",
"parcel-bundler": "^1.12.5",
"parcel-plugin-data-src": "github:bkeepers/parcel-plugin-data-src#data-src-anywhere",
"parcel-plugin-raw-xml": "^1.0.1",
"parcel-plugin-static-files-copy": "^2.5.0"
},
"staticFiles": {
"staticPath": [
{
"staticPath": "assets",
"excludeGlob": [
"src",
"src/**",
"tutorial",
"tutorial/**"
]
},
{
"staticPath": "i18n",
"staticOutDir": "i18n"
},
{
"staticPath": [
"NOTICE",
"LICENSE",
"README.md"
]
}
]
}
}