-
Notifications
You must be signed in to change notification settings - Fork 131
/
package.json
92 lines (92 loc) · 2.33 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "plasio",
"version": "0.0.1",
"description": "Online LAZ/LAS file viewer",
"devDependencies": {
"browserify": "^14.5.0",
"browserify-shim": "^3.8.14",
"chai": "^4.1.2",
"classnames": "^2.2.5",
"connect": "^3.6.5",
"create-react-class": "^15.6.2",
"envify": "^4.1.0",
"greyhound.js": "0.0.8",
"gulp": "^3.9.1",
"gulp-awspublish": "^3.3.0",
"gulp-browserify": "^0.5.1",
"gulp-clean": "^0.3.2",
"gulp-closure-compiler": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-html-replace": "^1.6.2",
"gulp-jshint": "^2.0.4",
"gulp-less": "^3.3.2",
"gulp-livereload": "^3.8.1",
"gulp-mocha": "^4.3.1",
"gulp-nodemon": "^2.2.1",
"gulp-react": "^3.1.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"gulp-watch": "^4.3.11",
"jshint": "^2.9.5",
"jshint-jsx": "^0.5.0",
"mochify": "^4.0.0",
"morgan": "^1.9.0",
"mori": "^0.3.2",
"open": "0.0.5",
"react": "^16.2.0",
"react-bootstrap": "^0.31.5",
"react-dom": "^16.2.0",
"reactify": "^1.1.1",
"serve-static": "^1.13.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "[email protected]:verma/plasio.git"
},
"author": "Uday Verma & Howard Butler",
"license": "MIT",
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"jquery": "./vendor/jquery.js",
"three": "./vendor/three.js",
"bluebird": "./vendor/bluebird.js",
"jqueryui": "./vendor/jquery.ui.js",
"jquery-nouislider": "./vendor/jquery.nouislider.min.js",
"jquery-layout": "./vendor/jquery.layout.js",
"bootstrap": "./vendor/bootstrap.min.js",
"trackball-controls": "./vendor/controls/TrackballControls.js",
"binary-loader": "./vendor/loaders/BinaryLoader.js",
"lodash": "./vendor/lodash.min.js"
},
"browserify-shim": {
"bluebird": "global:Promise",
"jquery": "$",
"jqueryui": {
"depends": "jquery:$"
},
"jquery-layout": {
"depends": "jquery:$"
},
"jquery-nouislider": {
"depends": "jquery:$"
},
"three": "THREE",
"trackball-controls": {
"depends": "three:THREE"
},
"binary-loader": {
"depends": "three:THREE"
},
"bootstrap": {
"depends": "jquery:$"
}
}
}