-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.28 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
{
"name": "CodeClash-CI",
"version": "1.0.0",
"type": "module",
"scripts": {
"test": "vitest --mode dev",
"frontend": "npm run dev --prefix frontend",
"backend": "npm run dev --prefix backend",
"dev": "npm run frontend && npm run backend",
"test:backend": "cd backend && npx vitest run",
"test:backend:coverage": "cd backend && npx vitest run --coverage",
"test:backend:coverage:ci": "cd backend && npx vitest run --coverage --exclude \"tests/integration/code-executor/**\" --exclude \"tests/integration/services/marking.service.test.ts\"",
"test:frontend": "cd frontend && NODE_OPTIONS=--no-experimental-webstorage npx vitest run --mode dev ",
"test:frontend:coverage": "cd frontend && NODE_OPTIONS=--no-experimental-webstorage npx vitest run --coverage --mode dev",
"lint": "npm run lint --prefix frontend && npm run lint --prefix backend",
"lint:staged": "lint-staged",
"prepare": "husky"
},
"lint-staged": {
"frontend/src/*/.{ts,tsx}": "eslint --fix",
"backend/src/*/.{ts,tsx}": "eslint --fix"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/ioredis": "^4.28.10",
"@types/node": "^25.7.0",
"@types/react": "^19.2.15",
"@types/redis": "^4.0.10",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"autoprefixer": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.17.0",
"eslint-plugin-jsdoc": "^63.0.8",
"eslint-plugin-unicorn": "^69.0.0",
"globals": "^17.0.0",
"husky": "^9.0.0",
"jsdom": "^29.1.1",
"lint-staged": "^15.0.0",
"postcss": "^8.5.14",
"tailwindcss": "^4.3.3",
"typescript-eslint": "^8.0.0",
"vitest": "^4.1.6"
},
"dependencies": {
"@tailwindcss/vite": "^4.3.3",
"aws-amplify": "^6.18.0",
"axios": "^1.18.1",
"clsx": "^2.1.1",
"color-convert": "^3.1.3",
"framer-motion": "^13.2.0",
"install": "^0.13.0",
"lucide-react": "^1.28.0",
"mock-socket": "^9.3.1",
"motion": "^13.1.0",
"npm": "^11.19.1",
"react-router-dom": "^7.18.2",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"tailwind-merge": "^3.6.0",
"typeorm": "^1.1.0",
"ws": "^8.21.0"
}
}