-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 1.71 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
{
"name": "mathsoc-website",
"version": "1.0.0",
"main": "index.tsx",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.0.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.5.1",
"@mui/material": "^5.5.3",
"@mui/styles": "^5.8.0",
"@netlify/functions": "^1.0.0",
"@svgr/webpack": "^6.2.1",
"contentful": "^9.1.6",
"hamburger-react": "^2.5.0",
"moment": "^2.29.2",
"next": "^12.1.0",
"nodemailer": "^6.7.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-slick": "^0.29.0",
"scss": "^0.2.4",
"sharp": "^0.30.3"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"test": "jest",
"test:watch": "jest --watch",
"start": "if [ -z \"$PORT\" ]; then next start; else next start -p $PORT; fi",
"lint": "eslint './src/**/*.{ts,tsx}'",
"lint:fix": "eslint './src/**/*.{ts,tsx}' --fix",
"prettier:check": "prettier --check 'src/**/*.{ts,tsx,scss}'",
"prettier:write": "prettier --write 'src/**/*.{ts,tsx,scss}'"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@types/node": "^17.0.21",
"@types/react": "^17.0.37",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"contentful-management": "^8.1.0",
"eslint": "^7.32.0",
"eslint-config-next": "^12.1.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"sass": "^1.51.0",
"typescript": "^4.5.5"
}
}