-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "leonidgrr.github.io",
"version": "1.0.0",
"description": "",
"author": "leonidgrr",
"license": "MIT",
"scripts": {
"build": "preact build",
"serve": "sirv build --port 8080 --cors --single",
"dev": "preact watch",
"lint": "eslint src",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"compressDraco": "gltf-pipeline -i ./src/components/3D/models/scene.glb -o ./src/components/3D/models/sceneDraco.glb -d"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"preact",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"build/"
]
},
"devDependencies": {
"@types/classnames": "2.3.1",
"@types/dat.gui": "0.7.7",
"@types/three": "0.141.0",
"@typescript-eslint/eslint-plugin": "2.25.0",
"@typescript-eslint/parser": "2.25.0",
"copy-webpack-plugin": "6.4.1",
"eslint": "6.8.0",
"eslint-config-preact": "1.1.0",
"gh-pages": "3.2.3",
"gltf-pipeline": "^3.0.5",
"preact-cli": "3.3.5",
"sirv-cli": "1.0.3",
"typescript": "4.3.4",
"webpack-glsl-loader": "1.0.1"
},
"dependencies": {
"classnames": "2.3.1",
"dat.gui": "0.7.9",
"preact": "10.8.2 ",
"preact-render-to-string": "5.1.4",
"preact-router": "3.2.1",
"stats-js": "1.0.1",
"three": "0.141.0"
}
}