-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.54 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.54 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"homepage": "https://annanaj.github.io/sand",
"name": "sand",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "just a simple scratch crud app",
"license": "MIT",
"scripts": {
"dev": "vite",
"start": "json-server --watch api/db.json --port 5001",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"build": "tsc && vite build",
"preview": "vite preview",
"tsc": "tsc",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"format": "prettier --write 'src/**/*.{ts,tsx,css}'",
"test": "vitest"
},
"dependencies": {
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-slot": "^1.1.0",
"@rive-app/react-canvas": "^4.14.5",
"@sentry/react": "^8.33.1",
"@sentry/tracing": "^7.114.0",
"@sentry/vite-plugin": "^2.22.5",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"env-cmd": "^10.1.0",
"graphql": "^16.9.0",
"graphql-request": "6.1.0",
"i18next": "^24.2.2",
"i18next-browser-languagedetector": "^8.0.2",
"install": "^0.13.0",
"json-server": "0.17.4",
"lottie-react": "^2.4.0",
"lucide-react": "^0.451.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.4.0",
"react-select": "^5.10.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"vite-plugin-environment": "^1.1.3"
},
"devDependencies": {
"@shadcn/ui": "^0.0.4",
"@svgr/cli": "^8.1.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.7.4",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"body-parser": "^1.20.3",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"express": "^4.21.0",
"gh-pages": "^6.2.0",
"jsdom": "^25.0.0",
"json-loader": "^0.5.7",
"nodemailer": "^6.9.15",
"postcss": "^8.4.47",
"postcss-preset-env": "^10.0.3",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"react-icons": "^5.4.0",
"sass": "^1.79.1",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0",
"vite": "^5.4.6",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^2.1.1"
}
}