-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 768 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 768 Bytes
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
{
"name": "algorithmic-architecture",
"version": "1.0.0",
"description": "Algorithmic Architecture Demo",
"scripts": {
"start": "npm run clean && parcel src/index.html",
"build": "npm run clean && parcel build src/index.html --public-url ./",
"clean": "rimraf ./dist ./.cache"
},
"assetsPath":"src/assets",
"keywords": [
"Parcel",
"TypeScript",
"ThreeJs",
"Three.js"
],
"author": "Simon Gardner <slgard@gmail.com>",
"license": "MIT",
"devDependencies": {
"parcel-bundler": "^1.12.4",
"rimraf": "^3.0.2",
"typescript": "^3.8.3"
},
"dependencies": {
"fp-ts": "^2.5.4",
"parcel-plugin-asset-copier": "^1.0.0",
"stats.js": "^0.17.0",
"three": "^0.115.0",
"three-csg-ts": "^1.0.4"
}
}