forked from fvlvte/knurclub-frontend-public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.67 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
{
"name": "knurlements-rewritten",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:prod": "cross-env VITE_BACKEND_URL=\"https://api.knur.club\" vite",
"build": "tsc && vite build",
"lint:prod": "eslint . --ext ts,tsx",
"prettier:prod": "prettier src/** --check",
"lint:fix": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"prettier:fix": "prettier src/** --write",
"preview": "vite preview",
"prepare": "husky"
},
"dependencies": {
"@linaria/core": "6.1.0",
"@linaria/react": "6.1.0",
"@wyw-in-js/babel-preset": "0.5.0",
"axios": "1.6.7",
"polished": "4.3.1",
"react": "canary",
"react-dom": "canary",
"react-icons": "5.0.1",
"three": "0.162.0",
"ws": "^8.16.0"
},
"devDependencies": {
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "14.2.1",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.12",
"@types/react": "18.2.61",
"@types/react-dom": "18.2.19",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"@vitejs/plugin-react": "4.2.1",
"cross-env": "7.0.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "27.9.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",
"husky": "9.0.11",
"prettier": "3.2.5",
"typescript": "5.3.3",
"vite": "5.1.4"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
}
}