-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathpackage.json
115 lines (115 loc) · 3.59 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
109
110
111
112
113
114
115
{
"name": "ui",
"type": "module",
"version": "0.1.0",
"private": true,
"packageManager": "yarn@4.6.0+sha512.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728",
"dependencies": {
"@fluentui/react": "^8.122.8",
"@fluentui/react-icons": "^2.0.271",
"@monaco-editor/loader": "^1.4.0",
"@monaco-editor/react": "^4.6.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/file-saver": "^2.0.7",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.16",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "^2.1.2",
"@xterm/addon-canvas": "^0.6.0-beta.1",
"@xterm/addon-fit": "^0.9.0-beta.1",
"@xterm/addon-image": "^0.7.0-beta.1",
"@xterm/addon-webgl": "^0.17.0-beta.1",
"@xterm/xterm": "^5.4.0-beta.1",
"clsx": "^1.1.1",
"comlink": "^4.4.1",
"connected-react-router": "^6.9.2",
"copy-to-clipboard": "^3.3.1",
"core-js": "^3.35.1",
"date-fns": "^3.6.0",
"dexie": "^4.0.8",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.0.1",
"eslint-plugin-unused-imports": "^3.0.0",
"file-saver": "^2.0.5",
"jsdom": "^25.0.1",
"monaco-editor": "^0.45.0",
"monaco-vim": "^0.3.4",
"prettier": "^3.2.4",
"re-resizable": "^6.9.11",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^5.0.1",
"react-redux": "^7.2.6",
"react-router-dom": "^5.3.0",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1",
"typescript": "^5.3.3",
"util": "^0.12.4",
"uuid": "^3.4.0",
"vite": "^5.4.12",
"vite-plugin-html": "^3.2.2",
"vite-plugin-node-polyfills": "^0.19.0",
"vite-plugin-static-copy": "^1.0.1",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^2.1.9",
"web-vitals": "^2.1.4",
"workbox-background-sync": "^6.5.4",
"workbox-broadcast-update": "^6.5.4",
"workbox-cacheable-response": "^6.5.4",
"workbox-core": "^6.5.4",
"workbox-expiration": "^6.5.4",
"workbox-google-analytics": "^6.5.4",
"workbox-navigation-preload": "^6.5.4",
"workbox-precaching": "^6.5.4",
"workbox-range-requests": "^6.5.4",
"workbox-routing": "^6.5.4",
"workbox-strategies": "^6.5.4",
"workbox-streams": "^6.5.4"
},
"scripts": {
"start": "npx vite --host",
"build": "npx vite build",
"serve": "npx vite preview",
"lint": "npx eslint .",
"test": "npx vitest",
"gen:suggestions": "node ./src/editor/internal/genpkgcache.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}