forked from totegamma/concurrent-world
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.64 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
{
"name": "cc-client",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"postinstall": "husky install",
"dev": "vite dev",
"build": "tsc && vite build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@concurrent-world/client": "^2.3.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.11.7",
"@rjsf/core": "^5.7.3",
"@rjsf/mui": "^5.7.3",
"@rjsf/utils": "^5.7.3",
"@rjsf/validator-ajv6": "^5.7.3",
"@rjsf/validator-ajv8": "^5.7.3",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"boring-avatars": "github:totegamma/boring-avatars#49ed345027665e1d6135ae6b0b6f2a442ff52915",
"elliptic": "^6.5.4",
"ethers": "^6.3.0",
"fuzzysort": "^2.0.4",
"i18next": "^23.5.1",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-http-backend": "^2.2.2",
"json-schema-to-typescript": "^13.0.1",
"notistack": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.10",
"react-i18next": "^13.2.2",
"react-infinite-scroller": "^1.2.6",
"react-markdown": "^8.0.7",
"react-parallax-tilt": "^1.7.146",
"react-router-dom": "^6.11.0",
"react-syntax-highlighter": "^15.5.0",
"react-use-websocket": "^4.3.1",
"react-window": "^1.8.9",
"rehype-raw": "^6.1.1",
"rehype-sanitize": "^5.0.1",
"remark-breaks": "^3.0.2",
"remark-gfm": "^3.0.1",
"textarea-caret": "^3.1.0",
"use-sound": "^4.0.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@storybook/addon-essentials": "7.0.18",
"@storybook/addon-interactions": "7.0.18",
"@storybook/addon-links": "7.0.18",
"@storybook/blocks": "7.0.18",
"@storybook/react": "7.0.18",
"@storybook/react-vite": "7.0.18",
"@storybook/testing-library": "0.0.14-next.2",
"@types/elliptic": "^6.4.14",
"@types/node-forge": "^1.3.1",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-infinite-scroller": "^1.2.3",
"@types/react-syntax-highlighter": "^15.5.6",
"@types/react-window": "^1.8.5",
"@types/textarea-caret": "^3.0.1",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@vitejs/plugin-react-swc": "^3.3.2",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-storybook": "^0.6.12",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"prop-types": "15.8.1",
"rollup-plugin-visualizer": "^5.9.2",
"storybook": "7.0.18",
"typescript": "^5.0.4",
"vite": "^4.0.0",
"vite-plugin-info": "github:rassi0429/vite-plugin-info",
"vite-plugin-pwa": "^0.14.7"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"packageManager": "pnpm@8.6.1",
"volta": {
"node": "18.16.0",
"pnpm": "8.6.1"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}