-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
99 lines (99 loc) · 3.08 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
{
"name": "game-lobby-web",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev -p 3030",
"build": "next build",
"start": "next start",
"lint": "next lint",
"eslint": "eslint \"**/*.+(js|jsx|ts|tsx)\"",
"eslint:fix": "eslint --fix \"**/*.+(js|jsx|ts|tsx)\"",
"prettier": "prettier --check \"**/*.+(js|jsx|ts|tsx|json|yml|yaml|css)\"",
"prettier:fix": "prettier --write \"**/*.+(js|jsx|ts|tsx|json|yml|yaml|css)\"",
"prepare": "husky install",
"pre-commit": "lint-staged",
"unit-test": "npx jest --watch",
"e2e-test": "npx cypress run",
"cypress": "npx cypress open",
"test": "npx jest && npx cypress run",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"analyze-bundle": "cross-env ANALYZE=true next build",
"knip": "knip --no-exit-code",
"bundlewatch": "bundlewatch --config .bundlewatch.config.js",
"icon-format": "prettier --write \"**/shared/Icon/**/*.(ts|tsx)\"",
"icon-convert": "tsx scripts/iconConverter && tsx scripts/generateIconExports && yarn icon-format"
},
"dependencies": {
"@svgr/webpack": "8.1.0",
"axios": "1.6.2",
"clsx": "1.2.1",
"http-proxy-middleware": "2.0.6",
"i18next": "23.7.6",
"js-cookie": "3.0.5",
"next": "13.4.8",
"next-i18next": "14.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "13.5.0",
"sharp": "0.32.6",
"socket.io": "4.7.2",
"socket.io-client": "4.7.2",
"tailwind-merge": "1.14.0"
},
"devDependencies": {
"@actions/github": "6.0.0",
"@next/bundle-analyzer": "13.4.7",
"@octokit/core": "5.0.0",
"@storybook/addon-essentials": "7.2.3",
"@storybook/addon-interactions": "7.2.3",
"@storybook/addon-links": "7.2.3",
"@storybook/blocks": "7.2.3",
"@storybook/nextjs": "7.2.3",
"@storybook/react": "7.2.3",
"@storybook/testing-library": "0.2.0",
"@testing-library/jest-dom": "6.1.3",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@total-typescript/ts-reset": "0.4.2",
"@types/jest": "29.5.2",
"@types/js-cookie": "3.0.3",
"@types/node": "20.1.1",
"@types/react": "18.2.25",
"@types/react-dom": "18.2.10",
"@types/testing-library__jest-dom": "5.14.6",
"@typescript-eslint/parser": "6.1.0",
"@welldone-software/why-did-you-render": "7.0.1",
"autoprefixer": "10.4.14",
"bundlewatch": "0.3.3",
"cross-env": "7.0.3",
"cypress": "13.1.0",
"eslint": "8.43.0",
"eslint-config-next": "13.4.7",
"eslint-plugin-storybook": "0.6.12",
"husky": "8.0.3",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"knip": "2.14.1",
"lint-staged": "14.0.1",
"node-html-parser": "6.1.13",
"postcss": "8.4.24",
"prettier": "3.0.0",
"shell-quote": "1.8.1",
"storybook": "7.2.3",
"tailwindcss": "3.3.2",
"tsx": "4.19.1",
"typescript": "5.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"resolutions": {
"@babel/core": "7.23.5",
"@types/react": "18.2.25",
"jackspeak": "2.1.1"
}
}