-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.34 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.34 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "bolierplate-frontend",
"private": true,
"engines": {
"node": ">=18.17.1"
},
"scripts": {
"dev": "next dev",
"dev:inspect": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix",
"prettier:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\"",
"prettier:fix": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"tsc:check": "tsc",
"tsc:watch": "tsc --watch",
"test": "TZ=UTC node --expose-gc node_modules/jest/bin/jest --verbose --logHeapUsage --passWithNoTests",
"test:update": "TZ=UTC node --expose-gc node_modules/jest/bin/jest --logHeapUsage -u",
"test:watch": "TZ=UTC jest --watch"
},
"dependencies": {
"@hookform/resolvers": "^v2.8.3",
"@sentry/nextjs": "^7.54.0",
"@tippyjs/react": "^4.2.6",
"@urql/devtools": "^2.0.3",
"@urql/exchange-auth": "^2.1.4",
"@urql/exchange-graphcache": "^6.1.4",
"@urql/exchange-retry": "^1.2.0",
"babel-jest": "^29.2.2",
"babel-loader": "^9.1.0",
"debug": "^4.3.2",
"eslint-plugin-prettier": "^4.2.1",
"graphql": "^16.3.0",
"i18next": "^22.4.10",
"jest": "^29.2.2",
"next": "13.4.19",
"next-auth": "^4.17.0",
"next-i18next": "^13.1.6",
"next-seo": "^5.3.0",
"next-sitemap": "^3.1.22",
"next-urql": "^5.0.2",
"nextjs-progressbar": "^0.0.16",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.1",
"react-hot-toast": "^2.2.0",
"react-i18next": "^12.2.0",
"react-modal": "3.16.1",
"react-paginate": "^8.1.2",
"styled-components": "^6.0.7",
"urql": "^4.0.4",
"usehooks-ts": "^2.9.1",
"yup": "^0.32.11",
"zustand": "^4.3.9"
},
"devDependencies": {
"@axe-core/react": "^4.4.0",
"@babel/core": "^7.16.0",
"@babel/plugin-syntax-typescript": "^7.16.0",
"@mobile-reality/eslint-config": "0.10.1",
"@svgr/webpack": "^8.0.1",
"@types/debug": "^4.1.7",
"@types/node": "^20.2.5",
"@types/react": "^18.0.17",
"@types/react-copy-to-clipboard": "^5.0.2",
"@types/react-datepicker": "^4.11.2",
"@types/react-dom": "^18.0.6",
"@types/react-modal": "^3.13.1",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "~5.31.0",
"@typescript-eslint/parser": "~5.31.0",
"babel-plugin-inline-react-svg": "^2.0.1",
"eslint": "^8.23.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest-styled-components": "^7.0.8",
"lint-staged": "^13.0.3",
"prettier": "^2.5.1",
"typescript": "^4.5.2"
},
"overrides": {
"react-share": {
"react": "18.2.0",
"react-dom": "18.2.0"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"bash -c tsc",
"eslint ./src --ext .js,.jsx,.ts,.tsx --fix"
]
}
}