-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.09 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "uta_datathon_2024",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"export": "next export",
"deploy": "gh-pages -d out"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@devexpress/dx-react-core": "^3.0.4",
"@devexpress/dx-react-scheduler": "^3.0.4",
"@devexpress/dx-react-scheduler-material-ui": "^3.0.4",
"@dnd-kit/core": "^6.0.5",
"@dnd-kit/sortable": "^7.0.1",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@headlessui/react": "^1.6.4",
"@heroicons/react": "^1.0.5",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/styles": "^4.11.5",
"@mui/icons-material": "^5.5.0",
"@mui/material": "^5.5.0",
"@mui/styles": "^5.5.0",
"@mui/system": "^5.5.0",
"@mui/x-date-pickers": "^5.0.20",
"@nivo/bar": "^0.80.0",
"@nivo/core": "^0.80.0",
"@nivo/pie": "^0.80.0",
"@react-google-maps/api": "^2.19.3",
"@syncfusion/ej2-react-schedule": "^19.4.48",
"@types/multer": "^1.4.7",
"acorn": "^8.4.1",
"commitizen": "^4.2.4",
"date-fns": "^2.28.0",
"doppler": "^1.0.0",
"firebase": "^8.9.0",
"firebase-admin": "^11.4.1",
"formik": "^2.2.9",
"github-slugger": "^1.4.0",
"jsqr": "^1.4.0",
"localforage": "^1.10.0",
"multer": "^1.4.3",
"next": "^12.1.0",
"next-connect": "^0.11.0",
"next-fonts": "^1.5.1",
"next-pwa": "^5.6.0",
"node-fetch": "^3.3.2",
"notion-client": "^6.12.9",
"qrcode": "^1.4.4",
"raw-loader": "^4.0.2",
"react": "17.0.2",
"react-dnd": "^15.1.2",
"react-dnd-html5-backend": "^15.1.2",
"react-dom": "17.0.2",
"react-markdown": "^8.0.3",
"react-material-ui-carousel": "^2.3.5",
"react-notion-x": "^6.12.10",
"react-select": "^4.3.1",
"rehype-slug": "^5.0.1",
"remark-gfm": "^3.0.1",
"swiper": "^7.4.1",
"tailwind-merge": "^2.2.1",
"tailwindcss-textshadow": "^2.1.3",
"webpack": "^5.76.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@tailwindcss/forms": "^0.5.3",
"@types/github-slugger": "^1.3.0",
"@types/jquery": "^3.5.8",
"@types/qrcode": "^1.4.1",
"@types/react": "17.0.38",
"autoprefixer": "^10.4.13",
"cz-conventional-changelog": "^3.3.0",
"eslint": "7.29.0",
"eslint-config-next": "11.0.1",
"eslint-config-prettier": "^8.3.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"postcss": "^8.4.21",
"prettier": "^2.3.2",
"tailwindcss": "^3.2.6",
"typescript": "^4.3.5"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint --cache --fix",
"prettier --write '**/*.{js,ts,tsx}'"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"disableSubjectLowerCase": true,
"maxHeaderWidth": 72,
"maxLineWidth": 80,
"defaultType": "chore"
}
}
}