-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.1 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
67
68
69
70
71
{
"name": "donor-frontend",
"version": "1.5.2",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start:dev": "next start",
"start": "next start",
"check-types": "tsc --noEmit",
"analyze": "cross-env ANALYZE=true yarn build",
"version": "auto-changelog -p --release-summary && git add CHANGELOG.md"
},
"dependencies": {
"@next/bundle-analyzer": "^12.1.4",
"antd": "^4.19.5",
"axios": "^0.26.1",
"next": "12.1.4",
"next-compose-plugins": "^2.2.1",
"next-i18next": "^11.0.0",
"next-pwa": "^5.4.6",
"next-seo": "^5.3.0",
"normalize.css": "^8.0.1",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-hook-form": "^7.29.0",
"react-query": "^3.34.19",
"react-yandex-maps": "4.6.0",
"recoil": "^0.7.0",
"sharp": "^0.30.3",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@svgr/webpack": "^6.2.1",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@types/styled-components": "^5.1.24",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"auto-changelog": "^2.4.0",
"babel-loader": "^8.2.4",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-styled-components": "^2.0.6",
"babel-preset-react-app": "^10.0.1",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript-prettier": "^5.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.25.4",
"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-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"typescript": "4.6.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,tsx,ts}": "eslint --cache --fix",
"*.{js,jsx,tsx,ts,css,md}": "prettier --write"
}
}