-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.13 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": "react-template",
"type": "module",
"private": true,
"license": "MIT",
"author": "Rodrigo Bondoc",
"version": "1.0.0",
"description": "",
"keywords": [],
"main": "index.js",
"scripts": {
"build": "vite build",
"checks": "concurrently \"npm run stan\" \"npm run lint\" \"npm run format\" -n stan,lint,format -c red,green,blue",
"dev": "vite",
"format": "prettier \"**/*.{ts,tsx}\" --check",
"format:fix": "prettier \"src/**/*.{ts,tsx}\" --write",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"stan": "tsc --noEmit --skipLibCheck",
"test": "vitest --run"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-slot": "^1.1.0",
"class-variance-authority": "^0.7.0",
"posthog-js": "^1.215.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.27.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"zustand": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@testing-library/react": "^16.0.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.7.7",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react-swc": "^3.7.1",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.1",
"eslint": "^9.13.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.13",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.9.0",
"jsdom": "^25.0.1",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"sass": "^1.78.0",
"tailwindcss": "^3.4.11",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"typescript-plugin-css-modules": "^5.1.0",
"vite": "^5.4.9",
"vitest": "^2.1.1"
}
}