-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 1.97 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
{
"name": "sketches",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "node scripts/build.js",
"prettier": "prettier-eslint --write \"src/**/*.{js,json,css}\"",
"lint": "eslint src/**/*.js",
"website:build": "cd website && yarn build",
"website:run": "cd website && yarn start"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js}": [
"prettier-eslint --write",
"git add"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"babylonjs": "^4.0.3",
"bunny": "^1.0.1",
"canvas-sketch": "^0.7.1",
"canvas-sketch-util": "^1.10.0",
"chaikin-smooth": "^1.0.4",
"d3-array": "^2.3.3",
"d3-delaunay": "^5.1.6",
"dat.gui": "^0.7.5",
"dequal": "^1.0.0",
"earcut": "^2.2.1",
"fs-extra": "^8.1.0",
"gl-mat4": "^1.2.0",
"gl-matrix": "^3.1.0",
"glsl-dither": "^1.0.1",
"glsl-noise": "^0.0.0",
"glslify": "^7.0.0",
"hex-rgb": "^4.0.0",
"howler": "^2.1.1",
"lodash": "^4.17.15",
"matter-js": "^0.14.2",
"nice-color-palettes": "^3.0.0",
"perspective-camera": "^2.0.1",
"point-in-polygon": "^1.0.1",
"popmotion": "^8.7.1",
"primitive-icosphere": "^1.0.2",
"regl": "^1.3.13",
"sharp": "^0.23.2",
"soundcloud-badge": "^1.1.0",
"stats.js": "^0.17.0",
"tess2": "^1.0.0",
"three": "^0.110.0",
"web-audio-analyser": "^2.0.1"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"prettier-eslint-cli": "^5.0.0"
}
}