-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.22 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
{
"name": "cl-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"loki:ci": "yarn run storybook:build; yarn run loki:test",
"loki:report": "yarn run reg-cli ./.loki/current ./.loki/reference ./.loki/diff --extendedErrors --enableAntialias --matchingThreshold .2 --report ./.loki/index.html --json ./.loki/report.json",
"loki:test": "loki test --requireReference --chromeTolerance 12 --reactUri file:./storybook-static; yarn run loki:report --chromeRetries 4",
"loki:update": "yarn run loki:ci; yarn run loki update --requireReference --chromeTolerance 12 --reactUri file:./storybook-static;",
"prepare": "husky install",
"reg-cli:update": "yarn run reg-cli ./.loki/current ./.loki/reference ./.loki/diff --json ./.loki/report.json -U",
"reg-cli:test": "yarn run reg-cli ./.loki/current ./.loki/reference ./.loki/diff --json ./.loki/report.json",
"start": "next start",
"storybook:build": "storybook build",
"storybook": "storybook dev -p 6006",
"test:coverage": "jest --coverage",
"test:update": "jest --u",
"test": "jest --watch",
"update-types": "graphql-codegen"
},
"dependencies": {
"focus-trap-react": "^10.2.1",
"framer-motion": "^10.16.1",
"graphql": "^16.8.0",
"graphql-request": "^6.1.0",
"lint-staged": "^14.0.1",
"next": "13.4.19",
"react": "18.2.0",
"react-dom": "18.2.0",
"sharp": "^0.32.6",
"storybook": "^7.3.2",
"zustand": "^4.4.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/client-preset": "^4.1.0",
"@graphql-codegen/schema-ast": "^4.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-tools/jest-transform": "^2.0.0",
"@graphql-tools/mock": "^9.0.0",
"@storybook/addon-essentials": "^7.3.2",
"@storybook/addon-styling": "^1.3.6",
"@storybook/blocks": "^7.3.2",
"@storybook/nextjs": "^7.3.2",
"@storybook/react": "^7.3.2",
"@testing-library/jest-dom": "^6.0.1",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest-axe": "^3.5.5",
"@types/node": "20.5.1",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"classnames": "^2.3.2",
"encoding": "^0.1.13",
"eslint": "8.47.0",
"eslint-config-next": "13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-mdx": "^2.2.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-storybook": "^0.6.13",
"husky": "^8.0.0",
"jest": "^29.6.3",
"jest-axe": "^8.0.0",
"jest-environment-jsdom": "^29.6.3",
"loki": "^0.32.0",
"prettier": "^3.0.2",
"react-intersection-observer": "^9.5.2",
"reg-cli": "^0.17.7",
"sass": "^1.66.1",
"storybook-css-modules-preset": "^1.1.1",
"typescript": "5.1.6"
},
"resolutions": {
"jackspeak": "2.1.1"
},
"lint-staged": {
"*.{js,jsx,mjs,mts,ts,tsx,mdx}": [
"eslint --fix",
"prettier --write --loglevel silent"
]
}
}