-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.91 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.91 KB
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
{
"name": "github-search",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"test": "jest",
"test:watch": "jest --watch",
"codegen": "graphql-codegen --config codegen.yml",
"storybook": "start-storybook -p 6006 -s ./public",
"build-storybook": "build-storybook -s public"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@apollo/link-error": "^2.0.0-beta.3",
"casual": "^1.6.2",
"date-fns": "^2.29.1",
"graphql": "^16.5.0",
"graphql-codegen": "^0.4.0",
"init": "^0.1.2",
"next": "12.2.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@apollo/react-testing": "^4.0.0",
"@babel/core": "^7.18.10",
"@graphql-codegen/cli": "2.11.3",
"@graphql-codegen/introspection": "2.2.0",
"@graphql-codegen/typescript": "2.7.2",
"@graphql-codegen/typescript-operations": "2.5.2",
"@graphql-codegen/typescript-react-apollo": "3.3.2",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-webpack5": "^6.5.10",
"@storybook/manager-webpack5": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/node": "18.7.1",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/styled-components": "^5.1.26",
"babel-loader": "^8.2.5",
"eslint": "8.21.0",
"eslint-config-next": "12.2.4",
"eslint-plugin-storybook": "^0.6.4",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"typescript": "4.7.4",
"webpack": "^5.74.0"
}
}