-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
67 lines (67 loc) · 1.56 KB
/
package.json
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
{
"name": "gdscutm-website",
"description": "GDSC 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.0",
"@mui/icons-material": "^6.3.0",
"@mui/material": "^6.3.0",
"@mui/material-nextjs": "^6.3.0",
"ical-generator": "^8.0.1",
"js-yaml": "^4.1.0",
"next": "^15.1.3",
"node-html-markdown": "^1.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-gtm-module": "^2.0.11",
"sharp": "^0.33.5"
},
"devDependencies": {
"@types/node": "22.10.4",
"eslint": "^9.16.0",
"eslint-config-next": "^15.1.3",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.3",
"globals": "^15.13.0",
"husky": "^9.1.7",
"prettier": "^3.4.2"
},
"scripts": {
"start": "next start",
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"prepare": "husky",
"pretty": "next lint --fix && prettier --write --list-different \"./**/*.{js,jsx,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
}
}