-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.24 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.24 KB
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
{
"name": "polyform",
"version": "1.0.0",
"description": "Polyform",
"main": "index.js",
"scripts": {
"build-prod": "ts-node ./esbuild.prod.ts",
"build-dev": "ts-node ./esbuild.ts",
"watch-prod": "npm run build-prod -- --watch",
"watch-dev": "npm run build-dev -- --watch",
"lint": "eslint src --ext ts"
},
"author": "Eli C Davis",
"license": "MIT",
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"abort-controller": "^3.0.0",
"esbuild": "^0.25.2",
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"stream-browserify": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@elicdavis/node-flow": "^0.1.11",
"@mkkellogg/gaussian-splats-3d": "^0.4.7",
"@types/three": "^0.174.0",
"rxjs": "^7.8.2",
"three": "^0.174.0"
}
}