-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.94 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
{
"name": "atd-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --max-warnings 0",
"prettier": "prettier --check .",
"codegen": "graphql-codegen --config codegen.yml --require dotenv/config",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@auth0/auth0-react": "^1.12.0",
"@chakra-ui/react": "^2.6.1",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.1.0",
"@slack/webhook": "^6.1.0",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.8",
"dayjs": "^1.11.6",
"framer-motion": "^10.12.16",
"graphql": "^16.6.0",
"next": "13.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.9",
"urql": "^3.0.3",
"zod": "^3.21.4"
},
"devDependencies": {
"@chakra-ui/storybook-addon": "^4.0.16",
"@graphql-codegen/cli": "^2.14.1",
"@graphql-codegen/introspection": "^2.2.1",
"@graphql-codegen/typescript": "^2.8.2",
"@graphql-codegen/typescript-operations": "^2.5.7",
"@graphql-codegen/typescript-urql": "^3.7.3",
"@graphql-codegen/urql-introspection": "^2.2.1",
"@storybook/addon-essentials": "^7.0.17",
"@storybook/addon-interactions": "^7.0.17",
"@storybook/addon-links": "^7.0.17",
"@storybook/blocks": "^7.0.17",
"@storybook/nextjs": "^7.0.17",
"@storybook/react": "^7.0.17",
"@storybook/testing-library": "^0.0.14-next.2",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-next": "^13.3.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import-alias": "^1.2.0",
"eslint-plugin-storybook": "^0.6.11",
"prettier": "2.8.7",
"storybook": "^7.0.17",
"typescript": "^4.8.4"
}
}