-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.03 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
{
"name": "ville",
"version": "1.1.0",
"description": "A user input-based procedural city generator",
"scripts": {
"dev": "rm -rf dist/ && parcel index.html",
"build": "rm -rf dist/ && parcel build index.html --public-url='/ville'",
"deploy": "git subtree push --prefix dist origin gh-pages"
},
"keywords": [],
"author": "Alex Graves",
"repository": {
"type": "git",
"url": "git+https://github.com/alexwgraves/ville.git"
},
"license": "ISC",
"devDependencies": {
"@parcel/optimizer-cssnano": "^2.0.0-nightly.716",
"@parcel/optimizer-htmlnano": "^2.0.0-nightly.716",
"@parcel/packager-css": "^2.0.0-nightly.612",
"@parcel/packager-html": "^2.0.0-nightly.612",
"@parcel/transformer-css": "^2.0.0-nightly.612",
"@parcel/transformer-html": "^2.0.0-nightly.612",
"@parcel/transformer-postcss": "^2.0.0-nightly.612",
"@parcel/transformer-posthtml": "^2.0.0-nightly.612",
"parcel": "^2.0.0-nightly.714",
"postcss": "^8.2.10"
},
"dependencies": {
"three": "^0.125.0"
}
}