This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
92 lines (92 loc) · 2.68 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "portal",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build:ci": "yarn test --ci --collectCoverage && yarn export",
"build": "next build",
"export": "next build && next-export-optimize-images",
"start": "next start",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "jest",
"lint": "eslint src",
"lint:staged": "lint-staged",
"test:coverage": "jest --collectCoverage",
"prepare": "husky install",
"format-code:all": "prettier --write ./src",
"format-code:staged": "pretty-quick --staged",
"pre-commit": "yarn format-code:staged && yarn lint:staged"
},
"husky": {
"hooks": {
"pre-commit": "yarn pre-commit",
"pre-push": "yarn test"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"jest --bail --findRelatedTests"
]
},
"dependencies": {
"@netlify/next": "^1.4.4",
"@netlify/plugin-nextjs": "^4.31.0",
"@sentry/nextjs": "^6.12.0",
"@storybook/addon-viewport": "^6.5.16",
"@testing-library/user-event": "^14.4.3",
"classnames": "^2.2.6",
"eslint-config-next": "^13.2.3",
"next": "^13.2.3",
"next-images": "^1.7.0",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.15.0",
"react-icons": "^4.2.0",
"react-spring": "^8.0.27",
"react-toastify": "^8.0.2"
},
"devDependencies": {
"@babel/core": "^7.12.7",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/react": "^6.5.16",
"@testing-library/dom": "^7.29.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"autoprefixer": "^10.4.14",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.1",
"css-loader": "^5.0.1",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-storybook": "^0.6.11",
"husky": ">=6",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-dom": "^4.0.0",
"lint-staged": ">=10",
"next-export-optimize-images": "^2.1.0",
"postcss": "^8.4.23",
"postcss-import": "^15.1.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.1",
"style-loader": "^2.0.0",
"tailwindcss": "^3.3.2"
},
"engines": {
"node": "^16.19.0",
"yarn": "^1.22.10"
}
}