forked from hack-rpi/HackRPI-Website-2025
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.8 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.8 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
113
114
115
116
{
"name": "hackrpi-website-2024",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "prettier --write --tab-width=2 --use-tabs . && next lint --fix",
"lint:fix:all": "node scripts/fix-indentation.js && npm run lint:fix",
"format": "prettier --write --tab-width=2 --use-tabs .",
"format:check": "prettier --check .",
"fix": "bash scripts/fix-lint-issues.sh",
"prepare": "husky install",
"test": "node --no-deprecation ./node_modules/.bin/jest",
"test:watch": "node --no-deprecation ./node_modules/.bin/jest --watch",
"test:ci": "node --no-deprecation ./node_modules/.bin/jest --ci --coverage",
"test:a11y": "node --no-deprecation ./node_modules/.bin/jest \".*\\.a11y\\.test\\.(js|jsx|ts|tsx)$\"",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report",
"test:coverage": "node --no-deprecation ./node_modules/.bin/jest --coverage",
"test:update": "node --no-deprecation ./node_modules/.bin/jest -u",
"test:components": "node --no-deprecation ./node_modules/.bin/jest --testPathPattern='.*/components/.*'",
"test:integration": "node --no-deprecation ./node_modules/.bin/jest --testPathPattern='.*/integration/.*'",
"test:unit": "node --no-deprecation ./node_modules/.bin/jest --testPathPattern='.*/unit/.*'",
"generate:test": "node scripts/generate-test.js",
"update-deps": "npx npm-check-updates -u --dep dev --target minor && npm install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,css,scss,md,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"@2toad/profanity": "^3.0.1",
"@tanstack/react-query": "^5.90.2",
"@trpc/client": "^11.6.0",
"@trpc/react-query": "^11.6.0",
"@trpc/server": "^11.6.0",
"ampx": "^0.2.3",
"dotenv": "^16.4.7",
"jquery": "^3.7.1",
"jquery-ui": "^1.14.1",
"mongodb": "^6.15.0",
"mongoose": "^8.18.2",
"next": "^14.2.16",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-multi-carousel": "^2.8.5",
"react-query": "^3.39.3",
"sharp": "^0.33.5",
"superjson": "^2.2.2"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@playwright/test": "^1.51.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/jest-axe": "^3.5.9",
"@types/jquery": "^3.5.32",
"@types/jqueryui": "^1.12.24",
"@types/node": "^22.13.10",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"autoprefixer": "^10.4.21",
"aws-cdk": "^2.1003.0",
"aws-cdk-lib": "^2.182.0",
"babel-jest": "^29.7.0",
"constructs": "^10.4.2",
"daisyui": "^4.12.24",
"esbuild": "^0.25.1",
"eslint": "^8.57.1",
"eslint-config-next": "^15.2.1",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"glob": "^11.0.1",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-axe": "^8.0.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-sonar-reporter": "^2.0.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^15.5.2",
"postcss": "^8.5.3",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.2.6",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"overrides": {
"inflight": "lru-cache@^10.0.1",
"glob": "^11.0.1",
"rimraf": "^6.0.1"
}
}