-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 2.04 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
{
"name": "ir-virtual-machine",
"private": true,
"version": "3.6.2",
"type": "module",
"scripts": {
"dev": "vite",
"build-ui": "tsc && vite build && touch docs/.nojekyll",
"build-ui-netlify": "tsc && vite build --config vite.config.netlify.ts",
"build-cli": "tsc --project cli && cd cli && rollup -c",
"build-all": "yarn build-ui && yarn build-cli",
"preview": "vite preview",
"lint": "eslint . --ext ts,mts,tsx --report-unused-disable-directives --max-warnings 0",
"type-check": "tsc --noEmit && tsc --project cli --noEmit",
"test": "jest"
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"@reduxjs/toolkit": "^1.9.5",
"antd": "^5.4.2",
"argparse": "^2.0.1",
"classnames": "^2.3.2",
"lodash": "^4.17.21",
"monaco-editor": "^0.47.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.4.1",
"react-redux": "^8.0.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/argparse": "^2.0.16",
"@types/lodash": "^4.17.0",
"@types/node": "^20.11.30",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@vitejs/plugin-react": "^3.1.0",
"babel-jest": "^29.5.0",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"jest": "^29.5.0",
"rollup": "^4.13.0",
"sass": "^1.62.0",
"typescript": "^4.9.3",
"typescript-eslint": "^7.7.1",
"vite": "^4.2.0",
"vite-tsconfig-paths": "^4.2.0"
}
}