-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.53 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
{
"name": "membership-portal",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@fortawesome/fontawesome-free": "^5.15.4",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.17",
"@mui/material": "^5.2.7",
"@next-auth/dynamodb-adapter": "^0.4.2",
"autoprefixer": "^10.4.0",
"aws-sdk": "^2.1024.0",
"axios": "^0.24.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"next": "^11.1.4",
"next-auth": "^3.29.0",
"postcss": "^8.4.3",
"react": "17.0.2",
"react-burger-menu": "^3.0.6",
"react-dom": "17.0.2",
"recoil": "^0.5.2",
"tailwindcss": "^2.2.19",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.6",
"@types/react": "17.0.27",
"@types/react-burger-menu": "^2.8.3",
"cz-conventional-changelog": "^3.0.1",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"husky": "^7.0.0",
"lint-staged": "^11.2.2",
"typescript": "4.4.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
}
}