-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.18 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
{
"name": "exo",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"prepare": "is-ci || husky install",
"start": "vite",
"dev": "vite",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@react-three/drei": "^9.24.0",
"@react-three/fiber": "^8.6.0",
"axios": "^1.3.2",
"bottleneck": "^2.19.5",
"classnames": "^2.3.1",
"formik": "^2.2.9",
"immer": "^10.0.1",
"lodash": "^4.17.21",
"luxon": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.33.4",
"react-router-dom": "^6.0.2",
"three": "^0.163.0",
"unique-names-generator": "^4.7.1",
"use-count-up": "^3.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^15.0.2",
"@testing-library/user-event": "^14.4.3",
"@types/lodash": "^4.14.191",
"@types/luxon": "^3.2.0",
"@types/node": "^20.12.7",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-router-dom": "^5.3.3",
"@types/three": "^0.163.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react-swc": "^3.1.0",
"@vitest/coverage-v8": "^1.2.1",
"@vitest/ui": "^1.2.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-testing-library": "^6.0.0",
"eslint-plugin-vitest": "^0.3.1",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.0.0",
"typescript": "^5.2.2",
"vite": "^5.0.12",
"vite-plugin-checker": "^0.6.0",
"vite-tsconfig-paths": "^4.0.5",
"vitest": "^1.2.1"
}
}