forked from WEHack-UTD2-0/hackportal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.04 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.04 KB
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
{
"name": "hackportal",
"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"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@devexpress/dx-react-core": "^3.0.0",
"@devexpress/dx-react-scheduler": "^3.0.0",
"@devexpress/dx-react-scheduler-material-ui": "^3.0.0",
"@headlessui/react": "^1.4.1",
"@heroicons/react": "^1.0.5",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@syncfusion/ej2-react-schedule": "^19.4.48",
"@types/multer": "^1.4.7",
"acorn": "^8.4.1",
"firebase": "^8.9.0",
"firebase-admin": "^9.11.0",
"formik": "^2.2.9",
"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.2.24",
"qrcode": "^1.4.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-material-ui-carousel": "^2.3.5",
"react-select": "^4.3.1",
"swiper": "^7.4.1",
"webpack": "^5.51.1"
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@types/jquery": "^3.5.8",
"@types/qrcode": "^1.4.1",
"@types/react": "^17.0.11",
"autoprefixer": "^10.3.1",
"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.3.6",
"prettier": "^2.3.2",
"tailwindcss": "^2.2.7",
"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"
}
}
}