forked from aalavandhaann/blueprint-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2.5 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
{
"name": "blueprint3d-js",
"version": "1.0.0",
"description": "This is the core framework of Blueprint-js for creating floorplans in 2d and 3d",
"main": "src/scripts/blueprint.js",
"scripts": {
"app-dev": "parcel src/index.html -d app/",
"app-production": "parcel build src/index.html -d app/ --no-source-maps --experimental-scope-hoisting",
"for-git-demo-dev": "parcel build src/index.html -d demo/ --public-url https://aalavandhaann.github.io/blueprint-js/demo/ --no-minify",
"for-git-demo-production": "parcel build src/index.html -d demo/ --no-source-maps --public-url https://aalavandhaann.github.io/blueprint-js/demo/",
"frameworkonly-dev": "parcel build src/scripts/blueprint.js --global BP3DJS --no-source-maps -d bin/ --target browser --out-file bp3djs.js --no-minify",
"frameworkonly-production": "parcel build src/scripts/blueprint.js --global BP3DJS --no-source-maps -d bin/ --target browser --out-file bp3djs.js",
"docs": "esdoc"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/aalavandhaann/blueprint-js.git"
},
"author": "#0K Srinivasan <[email protected]> (@aalavandhaann)",
"license": "ISC",
"bugs": {
"url": "https://github.com/aalavandhaann/blueprint-js/issues"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.12.1",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-latest": "^6.24.1",
"cssnano": "^4.1.10",
"esdoc": "^1.0.4",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^7.7.0",
"eslint-plugin-import": "^2.22.0",
"event-stream": ">4.0.0",
"livereload": "^0.9.1",
"npm-run-all": "^4.0.2"
},
"dependencies": {
"@thi.ng/geom-hull": "0.0.27",
"bezier-js": "^2.4.0",
"braces": "^2.3.2",
"deasync": "^0.1.21",
"detect-touch-device": "^1.1.5",
"es6-enum": "^1.1.0",
"file-save": "^0.2.0",
"file-saver": "^2.0.5",
"fps-now": "^3.1.1",
"gsap": "^3.5.0",
"jszip": "^3.5.0",
"line-intersect": "^2.2.1",
"parcel-bundler": "^1.12.4",
"pixi-viewport": "^4.18.0",
"pixi.js": "^5.3.3",
"point-in-polygon": "^1.0.1",
"quicksettings": "^3.0.1",
"three": "^0.118.3",
"three-gltf-exporter": "0.0.1",
"three-reflector": "^1.0.2",
"three-reflector2": "0.0.6"
}
}