This repository was archived by the owner on Nov 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.32 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.32 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
117
118
119
120
121
{
"name": "cais-web",
"version": "0.0.0",
"private": true,
"description": "A project for CAIS club website.",
"type": "module",
"homepage": "https://carletonai.com",
"scripts": {
"serve": "vite preview",
"dev": "vite",
"build": "vite build",
"test": "jest",
"test:watch": "jest --watch",
"lint:check": "eslint . --ext .js,.jsx,.ts,.tsx",
"format:check": "prettier --check .",
"check": "pnpm lint:check && pnpm format:check",
"lint": "eslint . --fix",
"format": "prettier --write .",
"fix": "pnpm lint && pnpm format",
"predeploy": "pnpm fix && pnpm build",
"push": "git commit --allow-empty -m \"SKIP CI commit [skip ci]\" && git push origin master"
},
"dependencies": {
"@fontsource-variable/inter": "^5.1.1",
"@fontsource-variable/manrope": "^5.1.1",
"@radix-ui/react-accordion": "^1.2.2",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-hover-card": "^1.1.4",
"@radix-ui/react-navigation-menu": "^1.2.3",
"@radix-ui/react-slot": "^1.1.1",
"framer-motion": "^11.17.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hotkeys-hook": "^4.6.1",
"react-icons": "^5.4.0",
"react-router-dom": "^7.1.1",
"react-social-icons": "^6.18.0"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@eslint/eslintrc": "^3.2.0",
"@shadcn/ui": "^0.0.4",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"@types/react": "^19.0.5",
"@types/react-dom": "^19.0.3",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"babel-jest": "^29.7.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint": "^9.18.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"gh-pages": "^6.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lucide-react": "^0.471.1",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vite-plugin-svgr": "^4.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/carletonai/cais-web.git"
},
"bugs": {
"url": "https://github.com/carletonai/cais-web/issues"
},
"keywords": [
"react",
"tailwindcss",
"carleton",
"ai",
"society",
"club",
"website"
],
"authors": [
{
"name": "Tarek Ibrahim",
"email": "tarekibrahim3@cmail.carleton.ca"
},
{
"name": "Angus Bailey",
"email": "AngusBailey@cmail.carleton.ca"
},
{
"name": "Author Two",
"email": "author2@example.com"
},
{
"name": "Author Two",
"email": "author2@example.com"
},
{
"name": "Author Two",
"email": "author2@example.com"
}
],
"license": "MIT"
}