-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "github-user-search",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "yarn codegen",
"dev": "next dev",
"prebuild": "yarn codegen",
"build": "next build",
"start": "next start",
"test": "jest",
"lint": "next lint",
"prepare": "husky install",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"cy": "cypress open",
"cy:headless": "cypress run",
"e2e:pre": "next build && next start",
"e2e": "start-server-and-test e2e:pre http://localhost:3000 cy",
"e2e:headless": "start-server-and-test e2e:pre http://localhost:3000 cy:headless",
"codegen": "graphql-codegen --config codegen.yml --require dotenv/config"
},
"dependencies": {
"graphql": "^16.3.0",
"graphql-request": "^4.2.0",
"next": "^12.1.6",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hook-form": "^7.27.1",
"react-query": "^3.38.0"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/typescript": "2.4.5",
"@graphql-codegen/typescript-graphql-request": "^4.3.7",
"@graphql-codegen/typescript-operations": "2.3.2",
"@storybook/addon-actions": "^6.5.8",
"@storybook/addon-essentials": "^6.5.8",
"@storybook/addon-interactions": "^6.5.8",
"@storybook/addon-links": "^6.5.8",
"@storybook/builder-webpack5": "^6.5.8",
"@storybook/manager-webpack5": "^6.5.8",
"@storybook/react": "^6.5.8",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.2",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/testing-library__jest-dom": "^5.14.4",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.3",
"cypress": "^9.5.1",
"eslint": "8.10.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-storybook": "^0.5.12",
"husky": "^7.0.4",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"lint-staged": ">=10",
"msw": "^0.39.2",
"msw-storybook-addon": "^1.6.3",
"node-fetch": "^2.6.7",
"node-mocks-http": "^1.11.0",
"postcss": "^8.4.14",
"prettier": "2.5.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"start-server-and-test": "^1.14.0",
"storybook-addon-next": "^1.6.6",
"storybook-addon-next-router": "^4.0.0",
"tailwindcss": "^3.1.1",
"ts-deep-extract-types": "^1.0.1",
"ts-jest": "^27.1.3",
"typescript": "4.6.2",
"webpack": "^5.70.0"
},
"msw": {
"workerDirectory": "public"
}
}