-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.61 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
{
"name": "next-starter",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"serve": "run-s build start",
"lint": "next lint",
"prettier": "prettier --cache --check .",
"unit": "jest",
"e2e": "playwright test",
"test": "run-p -l -c --aggregate-output lint prettier unit",
"fix": "run-s -l -c fix:lint fix:prettier",
"fix:lint": "next lint --fix",
"fix:prettier": "prettier --cache --write .",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "husky install"
},
"dependencies": {
"next": "13.4.13",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "4.0.11",
"zod": "3.21.4"
},
"devDependencies": {
"@babel/core": "7.22.10",
"@playwright/test": "1.37.0",
"@storybook/addon-a11y": "7.2.3",
"@storybook/addon-actions": "7.2.3",
"@storybook/addon-essentials": "7.2.3",
"@storybook/addon-interactions": "7.2.3",
"@storybook/addon-links": "7.2.3",
"@storybook/builder-webpack5": "7.2.3",
"@storybook/manager-webpack5": "6.5.16",
"@storybook/react": "7.2.3",
"@storybook/testing-library": "0.2.0",
"@storybook/testing-react": "2.0.0",
"@testing-library/jest-dom": "6.0.0",
"@testing-library/react": "14.0.0",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.4.3",
"@types/gtag.js": "0.0.13",
"@types/jest": "29.5.3",
"@types/node": "17.0.35",
"@types/react": "18.2.20",
"@types/react-test-renderer": "18.0.0",
"@typescript-eslint/eslint-plugin": "6.3.0",
"babel-loader": "9.1.3",
"eslint": "8.47.0",
"eslint-config-next": "13.4.13",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-sort-destructure-keys": "1.5.0",
"eslint-plugin-storybook": "0.6.13",
"eslint-plugin-testing-library": "6.0.0",
"husky": "8.0.3",
"jest": "29.6.2",
"jest-environment-jsdom": "29.6.2",
"lint-staged": "13.3.0",
"msw": "1.2.3",
"npm-run-all": "4.1.5",
"prettier": "3.0.1",
"react-test-renderer": "18.2.0",
"scaffdog": "3.0.0",
"storybook-addon-next": "1.8.0",
"storybook-addon-performance": "0.17.1",
"storybook-dark-mode": "3.0.1",
"typescript": "5.1.6"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"next lint --fix .",
"prettier --write ."
],
"**/*.{json,md,mdx,css,html,yml,yaml,scss}": [
"prettier --write ."
]
},
"msw": {
"workerDirectory": "public"
}
}