-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.84 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.84 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
{
"name": "learn-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"yarn lint && next dev\" \"yarn generate --watch\"",
"build": "next build",
"start": "next start",
"lint": "eslint --fix --ext .js,.jsx,ts,.tsx .",
"storybook": "start-storybook -p 6006 -s ./public",
"build-storybook": "build-storybook",
"generate": "DOTENV_CONFIG_PATH=.env.local graphql-codegen --config codegen.yml -r dotenv/config"
},
"dependencies": {
"@apollo/client": "^3.3.19",
"@hookform/resolvers": "^2.5.0",
"graphql": "^15.5.0",
"moment": "^2.29.1",
"next": "^10.0.0",
"next-auth": "^3.23.3",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-hook-form": "^7.5.3",
"react-icons": "^4.2.0",
"styled-components": "^5.2.3",
"styled-tools": "^1.7.2",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@graphql-codegen/cli": "1.21.4",
"@graphql-codegen/introspection": "1.18.2",
"@graphql-codegen/typescript": "1.22.0",
"@graphql-codegen/typescript-operations": "^1.17.16",
"@graphql-codegen/typescript-react-apollo": "2.2.4",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/react": "^6.2.9",
"@types/node": "^15.0.1",
"@types/react": "^17.0.4",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.12.0",
"dotenv": "^9.0.2",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unused-imports": "^1.1.1",
"storybook-addon-styled-component-theme": "^2.0.0",
"typescript": "^4.2.4"
}
}