-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 3.13 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
73
74
75
76
77
{
"name": "@usco/web-slicer-ui",
"version": "0.0.0",
"description": "",
"repository": "https://github.com/usco/usco-web-slicer-ui",
"main": "main.js",
"scripts": {
"test": "ava './src/utils/**/*.test.js' --require babel-register --verbose",
"build": "browserify src/index.js -g [envify --NODE_ENV 'production'] -o dist/index.js -t browserify-css -t [babelify browserify minifyify]",
"start-dev": "budo src/index.js:dist/index.js --port=8080 --live -- -t browserify-css -t babelify -t brfs -t envify",
"start-app": "electron main.js",
"package-app":"electron-packager . --overwrite",
"release-patch": "git checkout master; npm version patch && npm run build; git commit -a -m 'chore(dist): built dist/'; git push origin master --tags ",
"release-minor": "git checkout master; npm version minor && npm run build; git commit -a -m 'chore(dist): built dist/'; git push origin master --tags ",
"release-major": "git checkout master; npm version major && npm run build; git commit -a -m 'chore(dist): built dist/'; git push origin master --tags "
},
"author": "Mark 'kaosat-dev' Moissette",
"license": "MIT",
"dependencies": {
"@cycle/dom": "^14.3.0",
"@cycle/most-run": "^4.4.0",
"@cycle/run": "^1.0.0-rc.9",
"@most/create": "^2.0.1",
"@motorcycle/run": "^1.2.5",
"@usco/bounds-utils": "github:usco/usco-bounds-utils",
"@usco/camera-utils": "github:usco/usco-camera-utils",
"@usco/geometry-utils": "github:usco/usco-geometry-utils",
"@usco/image-utils": "github:usco/usco-image-utils",
"@usco/orbit-controls": "github:usco/usco-orbit-controls",
"@usco/printing-utils": "github:usco/usco-printing-utils",
"@usco/render-utils": "github:usco/usco-render-utils",
"@usco/transform-utils": "github:usco/usco-transform-utils",
"@usco/um-branding": "github:usco/usco-um-branding",
"babel-plugin-transform-react-jsx": "^6.23.0",
"browserify-cryptojs": "^0.3.1",
"browserify-css": "^0.10.0",
"camera-picking-ray": "^1.0.1",
"classnames": "^2.2.5",
"crypto-js": "^3.1.9-1",
"cycle-onionify": "^2.4.0",
"env2": "^2.1.1",
"filereader-stream": "^1.0.0",
"i18next": "^7.0.0",
"js-sha256": "^0.5.0",
"mesh-combine": "^1.1.0",
"mesh-reindex": "^1.0.0",
"most": "^1.2.2",
"most-gestures": "github:kaosat-dev/most-gestures",
"ray-aabb-intersection": "^1.0.1",
"ray-triangle-intersection": "^1.0.3",
"regl": "^1.3.0",
"serialize-stl": "^1.0.2",
"snabbdom-jsx": "^0.3.1",
"stream-conversions": "^0.3.0",
"usco-stl-parser": "github:usco/usco-stl-parser#streaming",
"xstream": "^10.2.0"
},
"devDependencies": {
"ava": "^0.15.2",
"babel-cli": "^6.6.5",
"babel-core": "^6.2.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.16.3",
"babelify": "^7.2.0",
"brfs": "^1.4.3",
"browserify": "^13.0.0",
"budo": "^9.4.7",
"electron": "^1.4.15",
"electron-packager": "^8.6.0",
"envify": "^4.0.0",
"minifyify": "^7.3.3",
"rollupify": "^0.3.4",
"watchify": "^3.7.0"
}
}