-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.49 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.49 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@smartzer-tech-test/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"lint": "eslint . --ext .ts,.tsx --ignore-pattern backend/src/generated --ignore-pattern frontend-e2e/out-tsc --ignore-pattern shared-types/out-tsc --report-unused-disable-directives || exit 1",
"format": "prettier --write .",
"format:check": "prettier --check . || exit 1",
"format:staged": "pretty-quick --staged",
"test": "nx run-many --target=test --all --skip-nx-cache --output-style=stream || exit 1",
"dev:backend": "ts-node scripts/sync-env.ts && npx nx serve backend",
"dev:frontend": "npx nx serve frontend",
"dev": "concurrently -k --success first \"npm run dev:backend\" \"npm run dev:frontend\"",
"sync-env": "ts-node scripts/sync-env.ts",
"sync-env:clean": "ts-node scripts/sync-env.ts --cleanup"
},
"prisma": {
"schema": "backend/prisma/schema.prisma"
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.29.0",
"@nx/cypress": "20.8.2",
"@nx/eslint": "20.8.2",
"@nx/eslint-plugin": "20.8.2",
"@nx/express": "^20.8.2",
"@nx/jest": "20.8.2",
"@nx/js": "20.8.2",
"@nx/node": "20.8.2",
"@nx/react": "^20.8.2",
"@nx/vite": "20.8.2",
"@nx/web": "20.8.2",
"@nx/webpack": "21.2.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.0",
"@svgr/webpack": "^8.1.0",
"@swc-node/register": "~1.10.10",
"@swc/cli": "~0.7.7",
"@swc/core": "~1.12.3",
"@swc/helpers": "~0.5.17",
"@swc/jest": "~0.2.38",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.3.0",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.23",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.32",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"@types/react-is": "19.0.0",
"@types/styled-components": "^5.1.34",
"@types/supertest": "^6.0.3",
"@vitejs/plugin-react": "^4.5.2",
"@vitest/ui": "^3.2.4",
"babel-jest": "^29.7.0",
"babel-plugin-styled-components": "2.1.4",
"concurrently": "^9.1.2",
"cypress": "^14.5.0",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jiti": "2.4.2",
"jsdom": "~26.1.0",
"lint-staged": "^16.0.0",
"nx": "20.8.2",
"prettier": "^3.5.3",
"pretty-quick": "^4.2.2",
"prisma": "^6.8.2",
"react-refresh": "^0.17.0",
"renovate": "^40.62.1",
"supertest": "^7.1.1",
"ts-jest": "^29.3.4",
"ts-node": "10.9.2",
"tslib": "^2.8.1",
"typescript": "~5.8.3",
"typescript-eslint": "^8.34.1",
"vite": "^6.3.5",
"vitest": "^3.2.4",
"wait-on": "^8.0.3",
"webpack-cli": "^6.0.1"
},
"workspaces": [
"packages/*",
"backend",
"backend-e2e",
"frontend",
"shared-types"
],
"dependencies": {
"@tailwindcss/vite": "^4.1.9",
"@prisma/client": "^6.8.2",
"@tanstack/react-query": "^5.80.10",
"axios": "^1.9.0",
"chokidar": "^4.0.3",
"cors": "^2.8.5",
"express": "^4.21.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-is": "19.1.0",
"styled-components": "^6.1.19"
}
}