-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·68 lines (68 loc) · 1.99 KB
/
package.json
File metadata and controls
executable file
·68 lines (68 loc) · 1.99 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
{
"name": "segflow-crm",
"private": true,
"version": "0.0.0",
"description": "Management and multi-quote system for insurance brokerages.",
"author": "Dianin",
"license": "MIT",
"homepage": "https://maxjuniorbr.github.io/segflow-crm/",
"repository": {
"type": "git",
"url": "git+https://github.com/maxjuniorbr/segflow-crm.git"
},
"bugs": {
"url": "https://github.com/maxjuniorbr/segflow-crm/issues"
},
"type": "module",
"scripts": {
"dev": "concurrently \"npm run server\" \"vite\"",
"server": "cd server && npm run dev",
"build": "vite build",
"preview": "vite preview",
"test": "npm run test:backend && npm run test:frontend",
"test:backend": "vitest run -c vitest.config.js",
"test:frontend": "vitest run -c vitest.config.ts",
"test:watch": "vitest watch -c vitest.config.ts",
"test:ui": "vitest --ui -c vitest.config.ts",
"test:backend:watch": "vitest watch -c vitest.config.js",
"test:backend:ui": "vitest --ui -c vitest.config.js"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"lucide-react": "^0.554.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router-dom": "^7.9.6",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.17",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.14.0",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"autoprefixer": "^10.4.22",
"baseline-browser-mapping": "^2.9.18",
"concurrently": "^9.2.1",
"jsdom": "^24.1.3",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.17",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"vitest": "^4.0.18",
"vitest-axe": "^0.1.0"
},
"keywords": [
"crm",
"insurance",
"brokerage",
"react",
"nodejs"
]
}