-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.42 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
{
"name": "acm-leadership",
"version": "1.0.0",
"author": "Harsha Srikara",
"private": true,
"license": "MIT",
"scripts": {
"dev": "NODE_OPTIONS='--inspect' doppler run -- next dev",
"build": "next build",
"start": "next start",
"anniversary-build": "tsc anniversary/anniversary.ts --outDir anniversary-build",
"anniversary-start": "node anniversary-build/anniversary/anniversary.js",
"birthday-build": "tsc birthday/birthday.ts --outDir birthday-build",
"birthday-start": "node birthday-build/birthday/birthday.js"
},
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.2.0",
"@mui/material": "^5.0.2",
"apollo-server-micro": "^3.6.1",
"axios": "^0.22.0",
"cors": "^2.8.5",
"firebase": "7.17.0",
"firebase-admin": "9.0.0",
"googleapis": "^95.0.0",
"jsonwebtoken": "^8.5.1",
"micro-cors": "^0.1.1",
"next": "latest",
"next-auth": "^3.29.0",
"next-themes": "^0.0.15",
"nprogress": "^0.2.0",
"react": "^17.0.2",
"react-calendar-timeline": "^0.27.0",
"react-dom": "^17.0.2",
"react-dropzone": "^11.4.2",
"swr": "^1.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/jsonwebtoken": "^8.5.8",
"@types/micro-cors": "^0.1.2",
"@types/node": "^17.0.21",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.39",
"typescript": "^4.5.5"
}
}