This repository has been archived by the owner on Jun 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
96 lines (96 loc) · 2.75 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "react-three-editor-monorepo",
"private": true,
"version": "1.0.0",
"main": "index.js",
"author": "Nikhil Saraf <[email protected]>",
"license": "MIT",
"scripts": {
"build": "pnpm clean && turbo build",
"build:packages": "pnpm build --filter=./packages/*",
"build:apps": "pnpm build --filter=./apps/*",
"clean": "rimraf packages/*/*/dist packages/*/dist",
"clean:vite": "rimraf **/node_modules/.vite",
"dev": "pnpm --filter=example dev",
"dev:link": "preconstruct dev",
"postinstall": "preconstruct dev",
"test": "turbo test",
"typecheck": "tsc --noEmit --emitDeclarationOnly false --strict --jsx react",
"ci": "preconstruct validate && pnpm build && pnpm test",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:release": "pnpm ci && pnpm changeset publish"
},
"dependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@changesets/cli": "^2.25.2",
"@manypkg/cli": "^0.19.2",
"@preconstruct/cli": "^2.2.2",
"@react-three/fiber": "^8.9.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.5",
"@types/react": "^18.0.22",
"@types/react-dom": "^18.0.7",
"@types/testing-library__jest-dom": "^5.14.5",
"@types/three": "^0.144.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"husky": "^8.0.2",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.1.2",
"lint-staged": "^13.1.0",
"postprocessing": "^6.29.0",
"prettier": "^2.8.0",
"pretty-quick": "^3.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": "0.147.0",
"ts-jest": "^28.0.8",
"tslib": "^2.4.0",
"typedoc": "^0.23.18",
"typescript": "^4.9.3"
},
"stackblitz": {
"startCommand": "cd games/example && pnpm dev"
},
"devDependencies": {
"rimraf": "^3.0.2",
"turbo": "^1.6.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"preconstruct": {
"packages": [
"packages/*"
]
},
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": false,
"arrowParens": "always",
"endOfLine": "auto"
}
}