-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.94 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
{
"name": "@MichailShcherbakov/sendsay-dev-task",
"private": true,
"version": "1.0.0",
"type": "module",
"license": "MIT",
"author": "MichailShcherbakov <[email protected]>",
"bugs": {
"url": "https://github.com/MichailShcherbakov/sendsay-dev-task/issues"
},
"homepage": "https://github.com/MichailShcherbakov/sendsay-dev-task#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MichailShcherbakov/sendsay-dev-task.git"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint \"src/**/*.ts\" --fix",
"lint:check": "eslint \"src/**/*.ts\"",
"fmt": "prettier . --write",
"fmt:check": "prettier \"src/**/*.ts\" --check",
"prepare": "yarn fmt && yarn lint",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@fontsource/inter": "^4.5.15",
"@reduxjs/toolkit": "^1.9.3",
"clsx": "^1.2.1",
"fast-memoize": "^2.5.2",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"reselect": "^4.1.7",
"vite-plugin-svgr": "^2.4.0"
},
"devDependencies": {
"@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",
"autoprefixer": "^10.4.13",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"sass": "^1.58.3",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vite-tsconfig-paths": "^4.0.5",
"vitest": "^0.29.2"
}
}