-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
91 lines (91 loc) · 3.27 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "tams-club-calendar",
"description": "The TAMS Club Calendar is a fully contained event tracker, club/volunteering database, and general resource center. This is the unofficial club event calendar for the Texas Academy of Mathematics and Science!",
"version": "6.3.0",
"private": true,
"author": "Michael Zhao <michaelzhao314@gmail.com> (https://michaelzhao.xyz/)",
"scripts": {
"dev": "next dev ./client",
"dev:staging": "NEXT_PUBLIC_BACKEND=staging next dev ./client",
"backend": "ts-node -r dotenv/config server/app.ts dotenv_config_path=server/.env",
"backend:dev": "nodemon -r dotenv/config server/app.ts dotenv_config_path=server/.env",
"build": "next build",
"build:staging": "NEXT_PUBLIC_BACKEND=staging next build ./client",
"build:backend": "node esbuild.js",
"type": "tsc --noEmit -p client",
"type:server": "tsc --noEmit -p server",
"start": "next start",
"docker": "docker build --no-cache --progress=plain --build-arg NEXT_PUBLIC_BACKEND=staging -t tams-club-cal .",
"docs": "typedoc --options typedoc.json",
"format": "prettier --write \"./**/*.{ts,tsx,json}\""
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.5",
"@mui/lab": "^5.0.0-alpha.64",
"@mui/material": "^5.2.8",
"@mui/styles": "^5.2.3",
"@mui/x-data-grid": "^5.5.0",
"aws-sdk": "^2.1057.0",
"chalk": "4",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dayjs": "^1.10.7",
"dotenv": "^11.0.0",
"express": "^4.17.3",
"google-auth-library": "^7.11.0",
"googleapis": "^92.0.0",
"helmet": "^5.0.1",
"mongoose": "^6.1.6",
"mongoose-paginate-v2": "^1.6.0",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"next": "^12.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-google-login": "^5.2.2",
"react-hook-form": "^7.22.5",
"react-image-crop": "^9.0.5",
"redux": "^4.1.2",
"sharp": "^0.30.5",
"universal-cookie": "^4.0.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.8",
"@types/react": "^17.0.38",
"@types/react-helmet": "^6.1.5",
"@types/sharp": "^0.29.5",
"@types/uuid": "^8.3.4",
"esbuild": "^0.14.11",
"fs-extra": "^10.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.7.1",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typedoc": "^0.22.11",
"typedoc-plugin-merge-modules": "^3.1.0",
"typescript": "^4.5.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}