-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "threejs-boilerplate",
"description": "Three.js + TypeScript + SolidJS + Vite + Vitest",
"homepage": "https://github.com/UstymUkhman/threejs-boilerplate#readme",
"packageManager": "^[email protected]",
"main": "src/main.tsx",
"version": "4.0.0",
"license": "MIT",
"private": false,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/UstymUkhman/threejs-boilerplate.git"
},
"bugs": {
"url": "https://github.com/UstymUkhman/threejs-boilerplate/issues",
"email": "[email protected]"
},
"author": {
"name": "Ustym Ukhman",
"email": "[email protected]",
"url": "https://github.com/UstymUkhman/"
},
"keywords": [
"vite",
"webgl",
"webgl2",
"threejs",
"solidjs",
"template",
"boilerplate",
"typescript",
"vitest",
"pnpm"
],
"scripts": {
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:cover": "vitest run --coverage",
"lint:css": "stylelint **/*.{css,scss}",
"lint:js": "eslint src/**/*.{ts,tsx,js,jsx}"
},
"dependencies": {
"animejs": "^3.2.1",
"solid-js": "^1.7.4",
"three": "^0.152.2"
},
"devDependencies": {
"@solidjs/testing-library": "^0.7.0",
"@types/animejs": "^3.1.7",
"@types/node": "^18.16.3",
"@types/three": "^0.152.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@vitest/coverage-c8": "^0.28.4",
"@vitest/web-worker": "^0.28.4",
"c8": "^7.13.0",
"eslint": "^8.39.0",
"jest-canvas-mock": "^2.5.0",
"jsdom": "^22.0.0",
"lil-gui": "^0.18.1",
"postcss": "^8.4.23",
"postcss-scss": "^4.0.6",
"sass": "^1.62.1",
"stylelint": "^15.6.1",
"stylelint-config-standard": "^33.0.0",
"typescript": "^5.0.4",
"vite": "^4.2.2",
"vite-plugin-glsl": "^1.1.2",
"vite-plugin-solid": "^2.7.0",
"vitest": "^0.28.4"
},
"engines": {
"node": ">= 18.12.1",
"pnpm": ">= 8.4.0"
}
}