-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.39 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
{
"name": "tresjs-vitest-browser-tests",
"type": "module",
"version": "0.0.0",
"description": "Testing TresJS with Vitest Browser 2.0",
"packageManager": "pnpm@9.6.0",
"license": "MIT",
"keywords": [
"vue",
"tresjs",
"webgl",
"vite",
"3d",
"threejs",
"three",
"threejs-vue"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test:browser:preview": "PROVIDER=preview vitest",
"test:browser:playwright": "PROVIDER=playwright vitest",
"test:browser:webdriverio": "PROVIDER=webdriverio vitest"
},
"dependencies": {
"@tresjs/cientos": "^3.9.0",
"@tresjs/core": "^4.0.1",
"@tresjs/leches": "^0.14.0",
"@vueuse/core": "^10.10.0",
"three": "^0.165.0",
"vue": "^3.4.27"
},
"devDependencies": {
"@tresjs/eslint-config": "^1.1.0",
"@types/node": "^18.17.14",
"@types/three": "^0.165.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/browser": "^2.0.5",
"@vitest/ui": "^2.0.5",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.3.0",
"playwright": "^1.44.1",
"typescript": "^5.4.5",
"vite": "^5.3.3",
"vite-plugin-glsl": "^1.3.0",
"vitest": "^2.0.5",
"vue-tsc": "^2.0.19",
"webdriverio": "^8.38.0"
},
"stackblitz": {
"startCommand": "npm run test:browser:preview"
}
}