-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "triplex",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/docs",
"examples/*",
"packages/*"
],
"scripts": {
"build": "yarn clean && yarn workspaces run build",
"clean": "yarn workspaces run rimraf dist",
"clean:node_modules": "rimraf node_modules && yarn workspaces run rimraf node_modules",
"dev": "node ./scripts/dev.js",
"lint": "eslint ./ --cache",
"test": "vitest",
"typedef": "yarn workspaces run typedef"
},
"resolutions": {
"@types/three": "^0.168.0",
"three": "^0.168.0"
},
"dependencies": {
"@changesets/cli": "^2.26.0",
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@nkzw/eslint-config": "^1.17.0",
"@swc/core": "^1.6.5",
"eslint": "^8.51.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-playwright": "^1.6.2",
"eslint-plugin-react-compiler": "19.0.0-beta-63b359f-20241101",
"jsdom": "^21.1.0",
"prettier": "^2.8.3",
"prettier-plugin-jsdoc": "^0.4.2",
"prettier-plugin-packagejson": "^2.4.3",
"prettier-plugin-tailwindcss": "^0.2.2",
"react-three-test": "*",
"rimraf": "^5.0.7",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"packageManager": "yarn@1.22.19",
"engines": {
"node": ">=20.14.0"
},
"volta": {
"node": "20.14.0"
}
}