-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.76 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
{
"name": "webconf-2021",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "husky install",
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"body-scroll-lock": "^4.0.0-beta.0",
"framer-motion": "^4.1.17",
"@auth0/nextjs-auth0": "^1.5.0",
"aws-sdk": "^2.969.0",
"html2canvas": "^1.3.2",
"joi": "^17.4.0",
"luxon": "^2.0.2",
"next": "11.0.1",
"node-fetch": "^2.6.1",
"nodemailer": "^6.6.2",
"nodemailer-ses-transport": "^1.5.1",
"pg": "^8.7.1",
"polished": "^4.1.3",
"prop-types": "^15.7.2",
"ramda": "^0.27.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.9.0",
"react-is": "^17.0.2",
"react-markdown": "^7.0.0",
"react-query": "^3.18.1",
"sequelize": "^6.6.5",
"styled-breakpoints": "^10.0.1",
"styled-components": "^5.3.0",
"styled-components-breakpoint": "^3.0.0-preview.20",
"voca": "^1.4.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@hookform/resolvers": "^2.6.0",
"babel-eslint": "^10.1.0",
"babel-plugin-ramda": "^2.0.0",
"babel-plugin-styled-components": "^1.13.1",
"eslint": "^7.29.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --cache --fix"
]
}
}