-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
106 lines (106 loc) · 2.95 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
99
100
101
102
103
104
105
106
{
"name": "canvas",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "./bin/start.js",
"serve-static": "echo 'http://localhost:8000'; python3 -m http.server --directory dist",
"build": "./bin/build-cli.js",
"add-image": "./bin/add-image.js",
"test": "npm run lint-es && npm run lint-ts && npm run test-js",
"lint-es": "eslint '*/**/*.{js,ts,tsx}'",
"lint-ts": "tsc --noEmit",
"test-js": "jest"
},
"author": "",
"repository": "https://github.com/gregtatum/canvas",
"license": "(MIT AND CC-BY-NC-4.0)",
"prettier": {
"trailingComma": "es5"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"moduleDirectories": [
"node_modules"
]
},
"dependencies": {
"@tatumcreative/color": "^1.2.2",
"@tatumcreative/random": "^1.1.3",
"@types/d3-quadtree": "^3.0.2",
"d3-quadtree": "^3.0.1",
"delaunay-triangulate": "^1.1.6",
"eases": "^1.0.8",
"formdata-node": "^5.0.0",
"formidable": "^1.2.2",
"geo-piecering": "^1.0.2",
"icosphere": "^1.0.0",
"lerp": "^1.0.3",
"rtree": "^1.4.2",
"simplex-noise": "^2.2.0",
"three": "^0.125.2",
"verlet-constraint": "^1.1.0",
"verlet-point": "^1.2.1",
"verlet-system": "^1.0.15"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-typescript": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-typescript": "^7.18.6",
"@types/dat.gui": "^0.7.7",
"@types/jest": "^29.0.3",
"@types/jimp": "^0.2.28",
"@types/lodash.template": "^4.5.1",
"@types/ncp": "^2.0.5",
"@types/node": "^18.7.18",
"@types/rbush": "^3.0.0",
"@types/rimraf": "^3.0.2",
"@types/source-map": "^0.5.2",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"babel-plugin-glslify": "^2.0.0",
"babel-plugin-module-resolver": "^4.1.0",
"concat-stream": "^2.0.0",
"dat.gui": "^0.7.9",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^4.2.1",
"geo-arc": "^1.1.2",
"gl-mat3": "^2.0.0",
"gl-mat4": "^1.2.0",
"gl-matrix": "^3.3.0",
"gl-vec3": "^1.1.3",
"glsl-noise": "*",
"glslify": "^7.1.1",
"html-webpack-plugin": "^5.5.0",
"http-server": "^14.1.1",
"inquirer": "^9.1.2",
"jest": "^29.0.3",
"jest-matcher-deep-close-to": "^3.0.2",
"jimp": "^0.16.2",
"lodash.template": "^4.5.0",
"mkdirp": "^1.0.4",
"ncp": "^2.0.0",
"orbit-controls": "^1.2.4",
"perspective-camera": "^2.0.1",
"prettier": "^2.7.1",
"querystring": "^0.2.0",
"rbush": "^1.4.2",
"remove-markdown": "^0.5.0",
"resl": "^1.0.3",
"rimraf": "^3.0.2",
"touch": "^3.1.0",
"ts-loader": "^9.4.1",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-dev-server": "^4.11.1",
"yargs": "^17.5.1"
}
}