-
Notifications
You must be signed in to change notification settings - Fork 143
/
Copy pathpackage.json
98 lines (98 loc) · 2.69 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
93
94
95
96
97
98
{
"name": "workshop-webgl-glsl",
"version": "1.0.0",
"description": "",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "[email protected]",
"url": "https://github.com/mattdesl"
},
"dependencies": {
"camera-project": "^1.0.2",
"camera-unproject": "^1.0.1",
"canvas-sketch": "^0.7.1",
"canvas-sketch-util": "^1.8.0",
"chromotome": "^1.10.1",
"clone-deep": "^4.0.1",
"codemirror": "^5.48.2",
"defined": "^1.0.0",
"euclidean-distance": "^1.0.0",
"fast-deep-equal": "^2.0.1",
"github-markdown-css": "^3.0.1",
"gl-mat4": "^1.2.0",
"gl-matrix": "^3.0.0",
"glsl-aastep": "^1.0.1",
"glsl-noise": "0.0.0",
"glsl-voronoi-noise": "^1.2.2",
"glsl-worley": "^1.0.2",
"history": "^4.10.1",
"jshint": "^2.10.2",
"lodash.clonedeep": "^4.5.0",
"lodash.debounce": "^4.0.8",
"lodash.merge": "^4.6.2",
"normalize.css": "^8.0.1",
"number-editor": "^1.2.3",
"pack-spheres": "^1.0.4",
"paper-colors": "^1.0.0",
"parcel-bundler": "^1.12.3",
"poisson-disk-sampling": "^1.0.6",
"preact": "^10.0.0-rc.0",
"preact-emotion": "^9.2.12",
"preact-router": "^3.0.1",
"prism-react-renderer": "^0.1.7",
"react": "^16.11.0",
"riso-colors": "^1.0.1",
"sass": "^1.22.9",
"screenfull": "^4.2.1",
"slugify": "^1.3.4",
"three": "^0.107.0",
"three-buffer-vertex-data": "^1.1.0",
"three-tube-wireframe": "^1.1.0",
"title-case": "^2.1.1",
"triangle-centroid": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@mdx-js/parcel-plugin-mdx": "^1.1.1",
"@mdx-js/react": "^1.0.0-rc.5",
"babel-eslint": "^10.0.3",
"eslint-plugin-legacy-decorators": "^1.0.0",
"glslify-bundle": "^5.1.1",
"glslify-deps": "^1.3.1",
"marked": "^0.7.0",
"standardx": "^4.0.0"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"legacyDecorators": true
}
}
},
"browserslist": [
"last 1 Chrome version"
],
"scripts": {
"build": "parcel build src/book/index.html --public-url=./ --out-dir=docs && cp docs/index.html docs/200.html",
"start": "parcel src/book/index.html"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git://github.com/mattdesl/workshop-webgl-glsl.git"
},
"alias": {
"react": "preact/compat",
"react-dom": "preact/compat"
},
"homepage": "https://github.com/mattdesl/workshop-webgl-glsl",
"bugs": {
"url": "https://github.com/mattdesl/workshop-webgl-glsl/issues"
}
}