-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 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
66
{
"name": "handy-services-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix --ext .ts,.tsx .",
"lint:staged": "lint-staged",
"lint:fix": "npm run lint --fix",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.5.10",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@next/bundle-analyzer": "^12.1.4",
"antd": "^4.20.5",
"date-fn": "^0.0.2",
"js-cookie": "^3.0.1",
"lodash.isequal": "^4.5.0",
"next": "12.1.4",
"next-compose-plugins": "^2.2.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.32.0",
"react-icons": "^4.3.1",
"react-select": "^5.3.2",
"react-spinners": "^0.13.1",
"react-table": "^7.8.0"
},
"devDependencies": {
"@types/js-cookie": "^3.0.2",
"@types/lodash.isequal": "^4.5.6",
"@types/node": "17.0.23",
"@types/react": "18.0.0",
"@types/react-dom": "18.0.0",
"@types/react-table": "^7.7.12",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"eslint": "^8.13.0",
"eslint-config-next": "^12.1.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-sonarjs": "^0.13.0",
"eslint-plugin-unicorn": "^42.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"typescript": "4.5.5"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"npm run lint:fix",
"pretty-quick --staged"
]
},
"engines": {
"node": ">=16.14.2 <17",
"npm": ">=8.6.0"
}
}