forked from sghall/react-vertex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.86 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
{
"name": "react-vertex-monorepo",
"private": true,
"version": "1.0.0",
"description": "Monorepo for React Vertex",
"main": "index.js",
"scripts": {
"dev": "rimraf node_modules/.cache/babel-loader && cross-env BABEL_ENV=docs next dev",
"prd": "npm run build && cd out && serve",
"build": "cross-env BABEL_ENV=docs next build && next export",
"release": "lerna run build && lerna publish --contents dist",
"pretty": "prettier '**/*.js' --tab-width 2 --write --no-semi --single-quote --trailing-comma=all --print-width 80"
},
"dependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"@material-ui/styles": "^3.0.0-alpha.10",
"classnames": "^2.2.6",
"clsx": "^1.0.4",
"d3-scale-chromatic": "^1.3.3",
"d3-timer": "^1.0.9",
"gl-matrix": "^3.0.0",
"glsl-curl-noise": "0.0.4",
"glsl-diffuse-oren-nayar": "^1.0.2",
"glsl-face-normal": "^1.0.2",
"glsl-gamma": "^2.0.0",
"glsl-inverse": "^1.0.0",
"glsl-noise": "0.0.0",
"glsl-perturb-normal": "^1.0.3",
"glsl-specular-phong": "^1.0.0",
"glsl-transpose": "^1.0.0",
"hex-rgb": "^4.1.0",
"jss": "^9.8.7",
"lodash.throttle": "^4.1.1",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-color": "^2.17.3",
"react-compound-slider": "^2.0.0",
"react-dom": "^16.8.4",
"react-jss": "^8.6.1",
"react-markdown": "^4.0.8",
"react-reconciler": "0.20.4",
"react-select": "^2.4.3",
"resize-observer-polyfill": "^1.5.1",
"rgb-hex": "^2.1.0",
"scheduler": "0.13.2",
"stats.js": "^0.17.0",
"warning": "^4.0.3"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.4",
"babel-eslint": "^10.0.1",
"babel-plugin-glsl": "^1.0.0",
"babel-plugin-module-resolver": "^3.2.0",
"copy": "^0.3.2",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"glslify": "^7.0.0",
"glslify-loader": "^2.0.0",
"lerna": "^3.14.1",
"next": "^8.1.0",
"next-images": "^1.1.1",
"prettier": "^1.17.1",
"raw-loader": "^2.0.0",
"rimraf": "^2.6.3",
"serve": "^11.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sghall/react-vertex.git"
},
"keywords": [
"react",
"hooks",
"webgl"
],
"author": "Steven Hall <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sghall/react-vertex/issues"
},
"homepage": "https://github.com/sghall/react-vertex#readme"
}