-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1.02 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
{
"name": "3dcreator",
"version": "1.0.0",
"description": "3D Creator is a prototype that shows how students (grades 7-12) can use block-based programming to create immersive 3D scenes.",
"scripts": {
"build": "rm -rf ./dist && rm -rf ./.parcel-cache && npx parcel build --public-url '.' index.html",
"server": "npm run build && npx parcel serve index.html -p 55000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simonguest/3dcreator.git"
},
"author": "Simon Guest",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/simonguest/3dcreator/issues"
},
"homepage": "https://github.com/simonguest/3dcreator#readme",
"dependencies": {
"babylonjs": "^6.21.1",
"babylonjs-inspector": "^6.21.1",
"blockly": "^10.1.3",
"intro.js": "^7.2.0"
},
"devDependencies": {
"@types/node": "^18.11.9",
"buffer": "^5.7.1",
"parcel": "^2.9.3",
"parcel-reporter-static-files-copy": "^1.5.3",
"path-browserify": "^1.0.1",
"process": "^0.11.10"
}
}