-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.46 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.46 KB
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
109
110
111
112
{
"name": "chat",
"version": "0.0.0",
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"predeploy": "npm run build",
"deploy": "vk-miniapps-deploy"
},
"engines": {
"node": ">=12.0.0"
},
"keywords": [],
"license": "MIT",
"dependencies": {
"@bugsnag/js": "^7.20.0",
"@bugsnag/plugin-react": "^7.19.0",
"@codemirror/lang-javascript": "^6.1.9",
"@happysanta/router": "0.3.1",
"@mdit/plugin-footnote": "^0.8.0",
"@monaco-editor/react": "^4.5.1",
"@telegram-apps/sdk": "^1.1.3",
"@types/node": "^12.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@uiw/react-codemirror": "^4.21.7",
"@vkontakte/icons": "2.98.0",
"@vkontakte/vk-bridge": "^2.14.1",
"@vkontakte/vk-bridge-react": "^1.0.1",
"@vkontakte/vk-miniapps-deploy": "0.0.25",
"@vkontakte/vkui": "6.0.2",
"babel-eslint": "^10.1.0",
"cross-env": "7.0.3",
"dignals": "0.1.0",
"dignals-model": "0.1.0",
"dignals-react": "0.1.27",
"eruda": "^2.4.1",
"eruda-code": "^2.0.0",
"eruda-dom": "^2.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-standard": "^5.0.0",
"favicon-fetch": "^1.0.0",
"get-website-favicon": "^0.0.7",
"lodash.throttle": "^4.1.1",
"markdown-it": "^14.0.1",
"markdown-it-footnote": "^4.0.0",
"markdown-it-latex": "^0.2.0",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-mathjax3": "^4.3.2",
"mermaid-react": "^0.1.0",
"prismjs": "^1.29.0",
"react": "18.2.0",
"react-ace": "9.5.0",
"react-dom": "18.2.0",
"react-favicon": "^2.0.7",
"react-lazy-load-image-component": "^1.6.0",
"react-virtualized": "^9.22.5",
"uuid": "^9.0.0",
"webcrypto-core": "^1.7.7"
},
"devDependencies": {
"@babel/runtime": "^7.21.5",
"@vitejs/plugin-react": "^4.0.3",
"@types/jest": "^29.5.1",
"@types/katex": "^0.16.7",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.throttle": "^4.1.7",
"@types/markdown-it": "^12.2.3",
"@types/prismjs": "^1.26.0",
"@types/react-lazy-load-image-component": "^1.6.3",
"@types/react-virtualized": "^9.21.28",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"jest": "^27.5.1",
"prettier": "^2.8.7",
"react-hot-loader": "^4.13.0",
"vite": "^4.4.5",
"vitest": "^0.34.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"jest": {
"moduleNameMapper": {
"$(.*)$": "<rootDir>/src$1"
}
},
"resolutions": {
"react-scripts/webpack-dev-server/yargs/yargs-parser": ">=18.1.2"
},
"overrides": {
"es5-ext@^0.10.50": "0.10.53"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}