-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1013 Bytes
/
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
{
"name": "cubo-world-web",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist/ && rm -rf /tmp/parcel_serve/",
"start": "yarn -s run serve",
"dev": "yarn -s run serve",
"serve": "parcel src/index.html --dist-dir /tmp/parcel_serve/",
"build": "yarn -s run clean && parcel build src/index.html --no-content-hash",
"build:prod": "yarn -s run clean && parcel build src/index.html --public-url \"/projects/cubo-world\" --no-source-maps",
"clean:cache": "rm -rf .parcel-cache",
"typescript:check": "tsc --noEmit"
},
"dependencies": {
"three": "^0.160.0"
},
"devDependencies": {
"@parcel/transformer-sass": "2.10.3",
"@types/three": "^0.160.0",
"parcel": "^2.10.3",
"typescript": "^5.3.3"
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"endOfLine": "lf",
"printWidth": 120,
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": true
}
}