-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.66 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.66 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
{
"name": "gdscutm-website",
"description": "GDG UofT Mississauga Website",
"version": "2024.11",
"private": true,
"license": "LGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/utmgdsc/website.git"
},
"bugs": {
"url": "https://github.com/utmgdsc/website/issues"
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "9.0.1",
"@mui/material": "9.0.1",
"@mui/material-nextjs": "9.0.1",
"ical-generator": "^10.2.0",
"next": "16.2.6",
"node-html-markdown": "^2.0.0",
"react": "19.2.6",
"react-dom": "19.2.6",
"react-gtm-module": "^2.0.11",
"sharp": "^0.34.5",
"yaml": "^2.9.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@types/js-yaml": "4.0.9",
"@types/node": "25.7.0",
"@types/react-gtm-module": "2.0.4",
"eslint": "^9.39.2",
"eslint-config-next": "16.2.6",
"eslint-plugin-promise": "^7.3.0",
"eslint-plugin-react": "^7.37.5",
"typescript-eslint": "^8.59.3",
"globals": "^17.6.0",
"husky": "^9.1.7",
"prettier": "^3.8.3"
},
"scripts": {
"start": "next start",
"build": "next build",
"dev": "next dev",
"lint": "eslint .",
"prepare": "husky",
"pretty": "prettier --write --list-different \"./**/*.{mjs,js,ts,tsx,json,css}\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"arrowParens": "avoid",
"bracketSameLine": false,
"bracketSpacing": true,
"endOfLine": "auto",
"jsxSingleQuote": false,
"printWidth": 120,
"quoteProps": "as-needed",
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": true
}
}