This repository has been archived by the owner on Jan 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
95 lines (95 loc) · 2.98 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
93
94
95
{
"name": "hubtech",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 8080",
"lint": "eslint src --max-warnings=0",
"next:lint": "next lint",
"prepare": "husky install",
"test": "jest --maxWorkers=50%",
"test:w": "jest --watch --maxWorkers=25%",
"test:ci": "jest --runInBand",
"sb": "start-storybook -s ./public -p 6006",
"build-sb": "build-storybook -s ./public",
"generate": "yarn plop --plopfile generators/plopfile.js",
"typecheck": "tsc --project tsconfig.json --noEmit",
"ngrok": "ngrok http -inspect=false -region sa 3000"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx,css}": [
"yarn lint --fix",
"yarn test --findRelatedTests --bail"
]
},
"dependencies": {
"@hookform/resolvers": "^2.6.1",
"@styled-icons/ionicons-outline": "^10.34.0",
"@styled-icons/remix-line": "^10.18.0",
"axios": "^0.21.1",
"js-cookie": "^3.0.1",
"next": "^11.0.0",
"next-pwa": "^5.2.23",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.12.1",
"react-toastify": "^7.0.3",
"small-cache": "^1.0.0",
"styled-components": "^5.2.1",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-typescript": "^7.14.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@next/eslint-plugin-next": "^11.0.1",
"@storybook/addon-a11y": "^6.3.2",
"@storybook/addon-essentials": "^6.3.2",
"@storybook/react": "^6.3.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.1.9",
"@types/jest": "^26.0.24",
"@types/js-cookie": "^2.2.7",
"@types/node": "^16.0.0",
"@types/react": "^17.0.13",
"@types/styled-components": "^5.1.11",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"babel-loader": "^8.2.2",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-styled-components": "^1.13.1",
"eslint": "^7.30.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.0",
"jest": "^27.0.6",
"jest-next-dynamic": "^1.0.1",
"jest-styled-components": "^7.0.4",
"lint-staged": "^11.0.0",
"plop": "^2.7.4",
"prettier": "^2.3.2",
"storybook-addon-next-router": "^2.0.4",
"storybook-dark-mode": "^1.0.8",
"storybook-mobile": "^0.1.32",
"typescript": "^4.3.5"
}
}