-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.49 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.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
{
"name": "acm-uiuc-website",
"version": "0.0.1",
"private": true,
"license": "BSD-3-Clause",
"type": "module",
"scripts": {
"astro": "astro",
"build": "astro build",
"dev": "astro dev",
"format:check": "prettier . --check && eslint .",
"format:fix": "prettier . --write && eslint . --fix",
"postinstall": "npm run setup && husky install",
"prepare": "husky install || true",
"prettier:write": "prettier . --write",
"preview": "astro preview",
"setup": "git config blame.ignoreRevsFile .git-blame-ignore-revs",
"test:e2e": "playwright test"
},
"lint-staged": {
"*.{ts,tsx,astro,js,css,md,mdx,json}": [
"prettier --write",
"eslint --fix"
],
"*.{yaml,yml}": [
"prettier --write"
]
},
"resolutions": {
"react": "npm:@preact/compat@latest",
"react-dom": "npm:@preact/compat@latest"
},
"dependencies": {
"@acm-uiuc/core-client": "^4.6.2",
"@acm-uiuc/js-shared": "^3.7.0",
"@astrojs/sitemap": "^3.7.0",
"@azure/msal-browser": "^4.28.2",
"@azure/msal-react": "^3.0.25",
"@iconify-json/lucide": "^1.2.93",
"@iconify-json/simple-icons": "^1.2.71",
"@icons-pack/react-simple-icons": "13.8.0",
"@marsidev/react-turnstile": "^1.4.2",
"@nanostores/preact": "^1.0.0",
"astro-compress": "^2.3.9",
"date-fns": "^4.1.0",
"lucide-react": "^0.575.0",
"nanostores": "^1.1.0",
"preact": "^10.28.4",
"react-big-calendar": "^1.19.4",
"react-qrcode-logo": "^4.0.0",
"temporal-polyfill": "^0.3.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/mdx": "^4.3.13",
"@astrojs/preact": "^4.1.3",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.2.0",
"@types/react": "^19.2.14",
"@types/react-big-calendar": "^1.16.3",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/parser": "^8.56.0",
"astro": "^5.17.3",
"astro-eslint-parser": "^1.3.0",
"astro-icon": "^1.1.5",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-preact": "^0.1.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"husky": "^8.0.0",
"lint-staged": "^16.2.7",
"prettier": "3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-packagejson": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
}
}