-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.38 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.38 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "circles",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@ant-design/colors": "7.2.1",
"@ant-design/icons": "5.3.7",
"@ant-design/plots": "2.5.0",
"@antv/algorithm": "0.1.26",
"@antv/g6": "4.8.24",
"@react-spring/web": "9.7.3",
"@reduxjs/toolkit": "2.8.2",
"@rive-app/react-canvas": "4.21.4",
"@tanstack/react-query": "5.81.5",
"@tippyjs/react": "4.2.6",
"antd": "5.26.2",
"axios": "1.16.0",
"dayjs": "1.11.13",
"fast-fuzzy": "1.12.0",
"framer-motion": "11.0.20",
"jwt-decode": "4.0.0",
"rc-picker": "4.11.3",
"react": "18.3.1",
"react-beautiful-dnd": "13.1.1",
"react-contexify": "6.0.0",
"react-dom": "18.3.1",
"react-helmet": "6.1.0",
"react-icons": "5.5.0",
"react-liquid-gauge": "1.2.4",
"react-redux": "9.2.0",
"react-router-dom": "6.22.3",
"react-scroll": "1.9.3",
"react-tooltip": "5.29.1",
"redux": "5.0.1",
"redux-persist": "6.0.0",
"redux-thunk": "3.1.0",
"styled-components": "6.1.19",
"use-debounce": "10.0.5",
"zod": "3.25.67"
},
"scripts": {
"start": "vite --port 3000 --host",
"start:local": "VITE_BACKEND_API_BASE_URL=https://circlesapi.devsoc.app vite --port 3000 --host",
"build": "vite build",
"preview": "vite preview --port 3000 --host",
"preview:local": "VITE_BACKEND_API_BASE_URL=https://circlesapi.devsoc.app vite preview --port 3000 --host",
"test": "vitest run",
"coverage": "vitest run --coverage",
"lint": "eslint src/**/*.{ts,tsx} --max-warnings 0",
"lint:fix": "eslint --fix src/**/*.{ts,tsx}",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"types": "tsc --project tsconfig.json"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "7.29.6",
"@testing-library/dom": "9.3.4",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "14.2.2",
"@testing-library/user-event": "14.6.1",
"@types/google.accounts": "0.0.14",
"@types/jest": "29.5.12",
"@types/node": "22.15.34",
"@types/react-beautiful-dnd": "13.1.8",
"@types/react-helmet": "6.1.11",
"@types/react-scroll": "1.8.10",
"@types/styled-components": "5.1.34",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitejs/plugin-react": "4.6.0",
"axios-mock-adapter": "1.22.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-n": "14.0.0",
"eslint-plugin-prettier": "5.5.1",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-simple-import-sort": "12.1.1",
"jsdom": "26.1.0",
"less": "4.3.0",
"prettier": "3.6.2",
"react-is": "18.3.1",
"typescript": "5.8.3",
"vite": "^7.0.6",
"vite-plugin-checker": "0.9.3",
"vite-plugin-eslint": "1.8.1",
"vite-plugin-svgr": "4.3.0",
"vitest": "3.2.6"
}
}