-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.01 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
{
"name": "3dwebprodconf",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "npm run dev --workspace main",
"dev-admin": "npm run dev --workspace admin",
"build": "npm run build --workspaces --if-present",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"fix": "eslint . --ext ts,tsx --fix",
"cilint": "eslint . --ext ts,tsx --format stylish ; eslint . --ext ts,tsx --format junit -o eslint.xml --max-warnings 0",
"prepare": "husky install",
"test": "jest"
},
"lint-staged": {
"packages/*/src/**/*.{js,jsx,ts,tsx,md,html,css}": "prettier --ignore-unknown --write",
"packages/*/src/**/*.{js,jsx,ts,tsx}": "eslint --cache",
"apps/*/src/**/*.{js,jsx,ts,tsx,md,html,css}": "prettier --ignore-unknown --write",
"apps/*/src/**/*.{js,jsx,ts,tsx}": "eslint --cache"
},
"browserslist": [
"> 1%",
"not dead",
"last 2 versions",
"defaults and fully supports es6-module",
"maintained node versions"
],
"dependencies": {
"@anatine/zod-mock": "^3.13.4",
"@faker-js/faker": "^8.4.1",
"@floating-ui/react": "^0.26.9",
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.1.1",
"@react-three/drei": "^9.96.5",
"@react-three/fiber": "^8.15.15",
"eventemitter3": "^5.0.1",
"i18next": "^23.10.1",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-http-backend": "^2.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.12",
"react-hot-toast": "^2.4.1",
"react-i18next": "^14.1.0",
"react-router-dom": "^6.21.3",
"three": "^0.163.0",
"three-mesh-bvh": "^0.7.3",
"uuid": "^9.0.1",
"valtio": "^1.13.0",
"valtio-history": "^0.3.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@react-three/eslint-plugin": "^0.1.1",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/three": "^0.163.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.17",
"browserslist": "^4.22.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-tailwindcss": "^3.14.1",
"eslint-plugin-valtio": "^0.6.2",
"husky": "^9.0.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^15.2.0",
"postcss": "^8.4.35",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3",
"vite": "^5.0.12"
}
}