-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.73 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
{
"name": "pyright-ast-viewer",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "NODE_OPTIONS=--max-old-space-size=8192 vite build",
"preview": "vite preview",
"lint": "eslint && prettier . --check",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.14.5",
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@types/jest": "^26.0.24",
"@types/lodash-es": "^4.17.6",
"@types/lz-string": "^1.3.34",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-treeview": "^0.4.3",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"@vitejs/plugin-react": "^1.3.2",
"babel-jest": "^27.0.6",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.1.0",
"prettier": "^2.3.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"typescript": "^4.3.5",
"vite": "^2.9.12"
},
"dependencies": {
"@monaco-editor/react": "^4.4.5",
"@rollup/plugin-replace": "^4.0.0",
"@zzzen/pyright-internal": "^1.2.0-dev.20220918",
"lodash-es": "^4.17.21",
"lz-string": "^1.4.4",
"monaco-editor": "^0.33.0",
"pyright": "^1.1.255",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-json-tree": "^0.17.0",
"react-split-pane": "^0.1.92",
"react-treeview": "^0.4.7",
"unstated-next": "^1.1.0"
}
}