-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.41 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
96
97
98
{
"name": "@henken.club/web-frontend",
"private": true,
"scripts": {
"dev": "next dev",
"prebuild": "run-s -sln generate",
"build": "next build",
"start": "next start",
"watch": "run-p -cln watch:*",
"watch:codegen": "gql-gen --watch",
"watch:i18n": "typesafe-i18n",
"generate": "run-p -cln generate:*",
"generate:codegen": "gql-gen",
"generate:i18n": "typesafe-i18n --no-watch",
"typecheck": "tsc --noEmit",
"spellcheck": "cspell",
"test": "jest --config=jest.config.ts --passWithNoTests",
"test:watch": "yarn run test --watch",
"test:update-snapshot": "yarn run test --updateSnapshot",
"storybook:dev": "start-storybook -p 6006 -s public,.storybook/public",
"storybook:build": "build-storybook -s public,.storybook/public",
"lint": "run-s -cn lint:*",
"lint:eslint": "eslint . --ext .js,.jsx,.ts,.tsx --cache",
"lint:dprint": "dprint check",
"fmt": "run-s -cn fmt:*",
"fmt:dprint": "dprint fmt"
},
"dependencies": {
"@auth0/auth0-react": "^1.8.0",
"@fortawesome/fontawesome-svg-core": "^1.3.0-beta2",
"@fortawesome/free-brands-svg-icons": "5.15.4",
"@fortawesome/free-solid-svg-icons": "^6.0.0-beta2",
"@fortawesome/react-fontawesome": "^0.1.15",
"@next/bundle-analyzer": "11.1.2",
"clsx": "1.1.1",
"graphql": "15.6.0",
"graphql-request": "3.5.0",
"graphql-tag": "^2.12.5",
"next": "11.1.2",
"next-compose-plugins": "2.2.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "7.15.4",
"react-use": "17.3.1",
"recoil": "^0.4.1",
"styled-components": "5.3.1",
"typesafe-i18n": "2.40.1",
"urql": "2.0.5"
},
"devDependencies": {
"@arkweid/lefthook": "0.7.6",
"@babel/core": "7.15.5",
"@graphql-codegen/cli": "2.2.0",
"@graphql-codegen/near-operation-file-preset": "2.1.4",
"@graphql-codegen/schema-ast": "^2.2.0",
"@graphql-codegen/typed-document-node": "^2.1.4",
"@graphql-codegen/typescript": "2.2.2",
"@graphql-codegen/typescript-graphql-request": "4.1.4",
"@graphql-codegen/typescript-operations": "2.1.4",
"@graphql-codegen/typescript-resolvers": "2.2.1",
"@graphql-codegen/typescript-urql": "3.2.0",
"@shopify/eslint-plugin": "40.4.0",
"@storybook/addon-a11y": "^6.1.11",
"@storybook/addon-actions": "6.3.8",
"@storybook/addon-essentials": "6.3.8",
"@storybook/addon-links": "6.3.8",
"@storybook/addon-postcss": "2.0.0",
"@storybook/addon-storysource": "^6.3.12",
"@storybook/addon-viewport": "^6.3.10",
"@storybook/node-logger": "^6.3.12",
"@storybook/react": "6.3.8",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.1.0",
"@testing-library/react-hooks": "^7.0.2",
"@tsconfig/node14": "1.0.1",
"@types/react": "17.0.24",
"@types/styled-components": "5.1.14",
"@types/tailwindcss": "2.2.1",
"autoprefixer": "10.3.5",
"babel-plugin-macros": "^3.1.0",
"cspell": "^5.10.1",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-plugin-unused-imports": "1.1.4",
"jest": "27.2.1",
"msw": "0.35.0",
"msw-storybook-addon": "1.3.0",
"npm-run-all": "4.1.5",
"postcss": "8.3.7",
"react-test-renderer": "^17.0.2",
"storybook-addon-next-router": "3.0.8",
"tailwindcss": "2.2.15",
"ts-jest": "27.0.5",
"tsconfig-paths-webpack-plugin": "3.5.1",
"type-fest": "2.3.4",
"typescript": "4.4.3"
}
}