-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.89 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
{
"name": "devfoundry",
"version": "2.0.0",
"description": "DevFoundry — A curated collection of machine coding challenges where developers forge full-stack projects with modular architecture and live demos.",
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"dev:local": "vite --port 3000 --mode development",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"prettify": "npx lint-staged",
"prepare": "husky"
},
"lint-staged": {
"**/*.{js,jsx,json,css,md}": "prettier --write"
},
"author": "Chetan Nada",
"license": "ISC",
"keywords": [
"react",
"reactjs",
"vite",
"tailwindcss",
"redux-toolkit",
"machine-coding",
"coding-challenges",
"frontend",
"javascript",
"open-source",
"devfoundry",
"project-collection",
"full-stack",
"mongodb",
"expressjs",
"nodejs"
],
"dependencies": {
"@heroicons/react": "^2.2.0",
"@reduxjs/toolkit": "^2.2.7",
"axios": "^1.15.2",
"caniuse-lite": "^1.0.30001790",
"clsx": "^2.1.1",
"firebase": "^10.13.1",
"framer-motion": "^12.23.24",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.62.0",
"react-hot-toast": "^2.5.2",
"react-icons": "^5.3.0",
"react-redux": "^9.1.2",
"react-router-dom": "^7.14.2",
"tailwind-scrollbar": "^3.0.0"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.9.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"postcss": "^8.4.41",
"prettier": "^3.6.2",
"tailwindcss": "^3.4.10",
"vite": "^5.4.1"
}
}