-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "rustpad",
"type": "module",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite",
"check": "tsc",
"build": "vite build",
"serve": "vite preview",
"format": "prettier --write ."
},
"dependencies": {
"@chakra-ui/react": "^2.10.4",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@monaco-editor/react": "^4.6.0",
"framer-motion": "^11.15.0",
"lodash.debounce": "^4.0.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.4.0",
"rustpad-wasm": "file:./rustpad-wasm/pkg",
"use-local-storage-state": "^19.5.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"monaco-editor": "^0.52.2",
"prettier": "3.4.2",
"typescript": "~5.7.2",
"vite": "^6.0.6",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.4.1"
}
}