-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
89 lines (89 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
88
89
{
"name": "next-ts-template",
"private": true,
"scripts": {
"dev": "next dev",
"dev-ip": "next dev --hostname 0.0.0.0",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"lint": "next lint",
"lint:eslint": "eslint --cache .",
"lint:prettier": "prettier --check .",
"test": "jest --coverage",
"test:e2e": "playwright test",
"test:e2e:codegen": "npx playwright codegen",
"generate": "scaffdog generate",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "npx simple-git-hooks || :"
},
"dependencies": {
"@tanstack/react-query": "^4.13.0",
"axios": "^1.1.3",
"next": "12.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@playwright/test": "^1.27.1",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/react": "^6.5.12",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^18.11.2",
"@types/react": "^18.0.21",
"@typescript-eslint/eslint-plugin": "5.20.0",
"@typescript-eslint/parser": "5.20.0",
"css-loader": "^6.7.1",
"eslint": "^8.22.0",
"eslint-config-next": "12.1.5",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.6",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"jest-html-reporters": "^3.0.11",
"jotai": "^1.8.6",
"lint-staged": "12.3.8",
"msw": "^0.42.3",
"msw-storybook-addon": "^1.6.3",
"next-router-mock": "^0.6.9",
"playwright": "^1.27.1",
"prettier": "2.5.1",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"scaffdog": "^2.4.0",
"simple-git-hooks": "^2.8.1",
"storybook-addon-next": "^1.6.9",
"style-loader": "^3.3.1",
"typed-scss-modules": "^7.0.1",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"simple-git-hooks": {
"pre-commit": "yarn run lint-staged"
},
"msw": {
"workerDirectory": "public"
},
"volta": {
"node": "16.18.0"
}
}