-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.71 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.71 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
{
"name": "components",
"private": true,
"version": "0.0.0",
"type": "module",
"env": {
"test": {
"presets": [
"react-app"
]
}
},
"scripts": {
"start": "vite --open",
"lint": "npx eslint --ext .tsx --ext .ts ./src",
"lint fix": "npx eslint --ext js,jsx,ts,tsx ./src --fix",
"build": "tsc --noEmit && vite build",
"preview": "vite preview"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"classnames": "^2.3.2",
"i18next": "^22.5.0",
"i18next-browser-languagedetector": "^7.0.2",
"npm": "^9.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.3.1",
"react-router-dom": "^6.9.0",
"vite-tsconfig-paths": "^4.0.8"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@types/jest": "^29.4.4",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vitejs/plugin-react": "^3.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"lint-staged": "^13.2.0",
"prettier": "2.8.4",
"sass": "^1.59.2",
"ts-plugin-scss-modules": "^0.1.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.9.3",
"vite": "^4.1.0"
}
}