-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 2.24 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
{
"name": "exposure",
"version": "0.1.1",
"description": "WebGL backed client side image processing library",
"author": "Nick Schaubeck",
"repository": "http://github.com/actionnick/exposure",
"scripts": {
"start": "python -m SimpleHTTPServer"
},
"devDependencies": {
"babel-core": "~6.26.0",
"babel-plugin-glslify": "~2.0.0",
"babel-plugin-transform-class-properties": "~6.24.1",
"babel-plugin-transform-object-rest-spread": "~6.26.0",
"babel-plugin-transform-react-jsx-source": "~6.22.0",
"babel-preset-es2015": "~6.24.1",
"babel-preset-es2016": "~6.24.1",
"babel-preset-es2017": "~6.24.1",
"babel-preset-react": "~6.24.1",
"babelify": "~8.0.0",
"browserify": "~14.5.0",
"classnames": "~2.2.5",
"create-react-class": "~15.6.2",
"find": "~0.2.7",
"glslify": "~6.1.0",
"grunt": "~1.0.1",
"grunt-babel": "~7.0.0",
"grunt-browserify": "~5.2.0",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-uglify": "~3.1.0",
"grunt-contrib-watch": "~1.0.0",
"grunt-exec": "^3.0.0",
"grunt-execute": "~0.2.2",
"grunt-parallel": "~0.5.1",
"grunt-watchify": "~0.1.0",
"load-grunt-tasks": "~3.5.2",
"material-ui": "~0.19.4",
"react": "~15.6.1",
"react-dom": "~15.6.1",
"react-file-input": "~0.2.4",
"react-json-view": "~1.13.3",
"react-modal": "~3.1.0",
"react-redux": "~5.0.6",
"react-slider": "~0.9.0",
"react-tools": "~0.13.3",
"redux": "~3.7.2",
"redux-thunk": "~2.2.0"
},
"dependencies": {
"a-big-triangle": "~1.0.3",
"cat-rom-spline": "~1.0.0",
"downloadjs": "~1.4.7",
"gl-fbo": "~2.0.5",
"gl-mat4": "~1.1.4",
"gl-matrix": "~2.4.0",
"gl-shader": "~4.2.1",
"lodash": "~4.17.4",
"pica": "~4.0.1",
"uuid": "~3.1.0"
},
"engine": "node >= 0.10.0",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"react",
"es2015",
"es2016",
"es2017"
],
"plugins": [
"babel-plugin-transform-react-jsx-source",
"babel-plugin-transform-object-rest-spread",
"babel-plugin-transform-class-properties",
"glslify"
]
}
]
]
}
}