-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.51 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.51 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
{
"name": "mashchuk-crm",
"private": true,
"version": "1.0.0",
"type": "module",
"workspaces": [
"apps/frontend",
"apps/backend"
],
"scripts": {
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"dev:frontend": "npm run dev --workspace=apps/frontend",
"dev:backend": "npm run dev --workspace=apps/backend",
"build": "npm run build --workspace=apps/frontend && npm run build --workspace=apps/backend",
"build:frontend": "npm run build --workspace=apps/frontend",
"build:backend": "npm run build --workspace=apps/backend",
"lint": "npm run lint --workspace=apps/frontend && npm run lint --workspace=apps/backend",
"test": "npm run test --workspace=apps/frontend && npm run test --workspace=apps/backend",
"seed": "npm run seed --workspace=apps/backend",
"migrate": "npm run migrate --workspace=apps/backend",
"studio": "npm run studio --workspace=apps/backend"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/leaflet": "^1.9.18",
"concurrently": "^8.2.2",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"@tanstack/react-query": "^5.81.2",
"autoprefixer": "^10.4.18",
"leaflet": "^1.9.4",
"postcss": "^8.4.35",
"react-leaflet": "^5.0.0",
"recharts": "^2.15.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tailwindcss": "^3.4.1"
}
}