-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.38 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
{
"name": "groot",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx,.js",
"prepare": "husky install"
},
"dependencies": {
"@sentry/react": "^6.11.0",
"@sentry/tracing": "^6.11.0",
"axios": "^0.25.0",
"cheerio": "0.22.0",
"file-saver": "^2.0.5",
"jszip": "^3.7.0",
"lodash": "^4.17.21",
"next": "11.1.3",
"next-seo": "^4.26.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-responsive-modal": "^6.1.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.14.5",
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.30",
"@types/file-saver": "^2.0.3",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.171",
"@types/react": "17.0.15",
"@types/yup": "^0.29.13",
"babel-jest": "^27.0.6",
"eslint": "7.31.0",
"eslint-config-next": "11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.0",
"jest": "^27.0.6",
"lint-staged": "^11.1.1",
"prettier": "^2.3.2",
"typescript": "4.3.5"
},
"lint-staged": {
"*.+(js|ts|tsx)": [
"yarn lint -- --fix"
],
"*.+(js|ts|tsx|md|css)": [
"prettier --write"
]
}
}