-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.82 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
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "avett-rx",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "run-p types:watch next:dev",
"next:dev": "next dev",
"dev:e2e": "run-s types:build next:e2e",
"next:e2e": "MOCK_SERVICE_WORKER=1 next dev",
"dev:ci": "MOCK_SERVICE_WORKER=1 next dev",
"prebuild": "CI=true yarn test",
"build": "next build",
"start": "next start",
"types:build": "DOTENV_CONFIG_PATH=./.env.local graphql-codegen --config codegen.yml -r dotenv/config",
"types:watch": "yarn types:build --watch",
"lint": "eslint --ext .ts,.tsx src/",
"format": "prettier --write \"src/**/*\"",
"schema:update": "./scripts/update-schema.sh",
"storybook:dev": "start-storybook -p 6006 -s public",
"storybook:build": "build-storybook -o public/storybook",
"pretest": "yarn types:build",
"test": "yarn jest",
"test:watch": "yarn jest --watch",
"test:coverage": "yarn jest --coverage",
"test:watch:coverage": "yarn jest --coverage --watch",
"cy:open": "yarn cypress open",
"cy:run": "yarn cypress run",
"test:cy-open": "start-server-and-test dev:e2e http://localhost:3000 cy:open",
"test:cy-run": "start-server-and-test dev:ci http://localhost:3000 cy:run",
"test:ci": "CI=true yarn test && yarn test:cy-run",
"tsc": "tsc --noEmit --skipLibCheck"
},
"dependencies": {
"@apollo/client": "^3.3.7",
"@chakra-ui/icons": "^1.0.1",
"@chakra-ui/react": "^1.0.3",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.0.0",
"@hapi/iron": "^6.0.0",
"@magic-sdk/admin": "^1.3.0",
"cookie": "^0.4.1",
"faunadb": "^4.0.0",
"framer-motion": "^2.9.5",
"graphql": "^15.4.0",
"magic-sdk": "^4.1.1",
"next": "10.0.4",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-error-boundary": "^3.1.0",
"react-query": "^3.5.6"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@graphql-codegen/cli": "1.20.1",
"@graphql-codegen/fragment-matcher": "2.0.1",
"@graphql-codegen/introspection": "1.18.1",
"@graphql-codegen/typescript": "1.20.0",
"@graphql-codegen/typescript-document-nodes": "1.17.9",
"@graphql-codegen/typescript-operations": "1.17.14",
"@graphql-codegen/typescript-react-apollo": "^2.2.1",
"@storybook/addon-actions": "^6.1.11",
"@storybook/addon-essentials": "^6.1.11",
"@storybook/addon-links": "^6.1.20",
"@storybook/react": "^6.1.20",
"@testing-library/cypress": "^7.0.4",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.8.0",
"@tmikeschu/graphql-typescript-factories": "^1.0.5",
"@tmikeschu/graphql-typescript-response-factories": "^2.0.0",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.15.2",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"cross-fetch": "^3.0.6",
"cypress": "^6.5.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-jest-dom": "^3.6.5",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-testing-library": "^3.10.1",
"husky": ">=4.3.6",
"jest": "^26.6.3",
"lint-staged": ">=10.5.3",
"msw": "^0.24.4",
"npm-run-all": "^4.1.5",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"react-is": "^17.0.1",
"start-server-and-test": "^1.12.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"vercel": "^21.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{css,md}": "prettier --write"
}
}