-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.3 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.3 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
{
"name": "acm-uiuc-website",
"version": "1.0.0",
"homepage": "https://acm.illinois.edu/",
"private": true,
"scripts": {
"postinstall": "npm run setup",
"setup": "git config blame.ignoreRevsFile .git-blame-ignore-revs",
"dev": "next dev",
"start": "yarn dev",
"build:dev": "env-cmd -f .env.development next build && yarn postbuild",
"build:prod": "env-cmd -f .env.prod next build && yarn postbuild",
"build:staging": "env-cmd -f .env.staging next build && yarn postbuild",
"postbuild": "cp src/_redirects build/_redirects",
"serve": "serve build",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prettier:write": "prettier --write ."
},
"dependencies": {
"@acm-uiuc/core-client": "^4.1.10",
"@acm-uiuc/js-shared": "^3.2.0",
"@azure/msal-browser": "^4.15.0",
"@azure/msal-react": "^3.0.15",
"@heroui/react": "2.7.6",
"@marsidev/react-turnstile": "^1.4.1",
"framer-motion": "^10.17.9",
"lottie-react": "^2.3.1",
"moment": "^2.29.4",
"moment-timezone": "^0.5.45",
"next": "^14.2.25",
"pluralize": "^8.0.0",
"react": "^18.3.1",
"react-big-calendar": "^1.13.1",
"react-dom": "^18.3.1",
"react-icons": "^4.4.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.6.7",
"@storybook/addon-interactions": "^7.6.7",
"@storybook/addon-links": "^7.6.7",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.7",
"@storybook/nextjs": "^7.6.7",
"@storybook/react": "^7.6.7",
"@storybook/test": "^7.6.7",
"@testing-library/react": "^13.3.0",
"@types/jest": "^27.5.2",
"@types/node": "^20",
"@types/pluralize": "^0.0.33",
"@types/react": "^18",
"@types/react-big-calendar": "^1.8.8",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.16",
"cross-env": "^7.0.3",
"env-cmd": "^11.0.0",
"eslint": "^8",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-storybook": "^0.6.15",
"postcss": "^8.4.33",
"prettier": "^3.5.3",
"serve": "^14.2.1",
"storybook": "^7.6.7",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"wrangler": "^4.33.2"
},
"resolutions": {
"jackspeak": "2.1.1"
},
"packageManager": "yarn@1.22.19"
}