This repository was archived by the owner on Jan 20, 2024. It is now read-only.
generated from CHR-onicles/rtsc-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 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
{
"name": "animated-stepper-form",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "npm run build && vite preview",
"lint": "eslint src/.",
"lint:fix": "eslint --fix src/.",
"prepare": "husky install",
"tsc": "tsc"
},
"dependencies": {
"@radix-ui/colors": "^2.1.0",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.4",
"@radix-ui/react-select": "^1.2.2",
"react": "^18.2.0",
"react-alice-carousel": "^2.8.0",
"react-datepicker": "^4.21.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"react-router-dom": "^6.18.0",
"react-use": "^17.4.0",
"styled-components": "^6.1.0"
},
"devDependencies": {
"@types/react": "^18.2.34",
"@types/react-datepicker": "^4.19.1",
"@types/react-dom": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vitejs/plugin-react": "^4.1.1",
"eslint": "^8.52.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-svgr": "^3.3.0",
"vite-tsconfig-paths": "^4.2.1"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint --fix"
}
}