-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
34 lines (34 loc) · 1019 Bytes
/
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
{
"name": "playground",
"version": "1.0.0",
"description": "Prettier Apex Playground Website",
"main": "index.js",
"scripts": {
"build": "del-cli dist && vite build",
"build:watch": "vite build --watch",
"clean": "del-cli node_modules dist",
"lint": "eslint \"src/*.{ts,tsx}\" \"*.ts\"",
"dev": "vite --open http://localhost:5173/",
"prettier": "prettier --write \"src/**/*.{ts,tsx,css,html}\" \"./*.{md,ts}\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@monaco-editor/react": "4.6.0",
"clipboard": "2.0.11",
"endent": "2.1.0",
"lz-string": "1.5.0",
"prettier-plugin-apex": "workspace:*",
"react": "19.0.0",
"react-dom": "19.0.0",
"use-debounce": "10.0.4"
},
"devDependencies": {
"@types/react": "19.0.3",
"@types/react-dom": "19.0.2",
"@vitejs/plugin-react": "4.3.4",
"vite": "6.0.7",
"vite-plugin-radar": "0.9.6"
},
"author": "Dang Mai <contact@dangmai.net>",
"license": "MIT"
}