forked from TheySaid-Platform/frontend-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.66 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
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
{
"name": "create-react-app-vite",
"version": "0.4.0",
"license": "MIT",
"msw": {
"workerDirectory": "public"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest --run",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"lint": "eslint . --ext .ts,.tsx,.js,jsx,cjs,mjs",
"lint:fix": "eslint . --ext .ts,.tsx,.js,jsx,cjs,mjs --fix",
"typecheck": "tsc --noEmit",
"prettier": "prettier --ignore-unknown --write .",
"clean": "rimraf node_modules pnpm-lock.yaml dist",
"validate": "./scripts/validate",
"remove:tailwind": "scripts/remove_tailwind.js",
"prepare": "husky"
},
"dependencies": {
"@theme-toggles/react": "^4.1.0",
"@types/uuid": "^10.0.0",
"clsx": "^2.1.1",
"framer-motion": "^10.11.5",
"nanoid": "^5.0.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-responsive": "^10.0.0",
"react-router-dom": "^6.27.0",
"recoil": "^0.7.7",
"uuid": "^9.0.0"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/eslint": "^8.56.7",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react-swc": "^3.7.1",
"@vitest/ui": "^1.4.0",
"all-contributors-cli": "^6.26.1",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"cross-fetch": "^4.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-ts-prefixer": "^1.14.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.0.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"msw": "^2.6.0",
"postcss": "^8.4.47",
"postcss-import": "^16.1.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.14",
"ts-expect": "^1.3.0",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^1.4.0"
},
"volta": {
"node": "20.16.0"
}
}