-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.48 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
{
"name": "he4rtconf-land",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src --max-warnings=0",
"postinstall": "husky install"
},
"lint-staged": {
"src/**/*": [
"yarn lint --fix"
]
},
"dependencies": {
"@hookform/resolvers": "^2.8.1",
"axios": "^0.21.2",
"chrome-aws-lambda": "^10.1.0",
"next": "11.1.1",
"next-pwa": "^5.3.1",
"nookies": "^2.5.2",
"puppeteer-core": "^10.2.0",
"react": "17.0.2",
"react-countdown": "^2.3.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.16.2",
"react-icons": "^4.2.0",
"react-modal": "^3.14.3",
"react-select": "^5.0.0",
"styled-components": "^5.3.1",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/node": "^16.7.4",
"@types/react": "^17.0.19",
"@types/styled-components": "^5.1.13",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.13.2",
"eslint": "^7.32.0",
"eslint-config-next": "11.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"typescript": "4.4.2"
}
}