-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.58 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.58 KB
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
{
"name": "easy-lowcode",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"renderer": "cross-env NODE_ENV=renderer vite build --watch",
"editor": "cross-env NODE_ENV=editor vite build --watch",
"server": "nodemon ./server/App.cjs",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@codemirror/lang-html": "^6.4.2",
"@codemirror/lang-javascript": "^6.1.4",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.1.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.14.2",
"@uiw/codemirror-extensions-basic-setup": "^4.19.9",
"@uiw/codemirror-extensions-langs": "^4.19.9",
"@uiw/codemirror-themes-all": "^4.19.9",
"@uiw/react-codemirror": "^4.19.8",
"antd": "^5.5.1",
"classnames": "^2.3.2",
"cross-env": "^7.0.3",
"handlebars": "^4.7.7",
"immer": "^10.0.2",
"koa": "^2.14.1",
"koa-bodyparser": "^4.3.0",
"koa-json": "^2.0.2",
"koa-onerror": "^4.2.0",
"koa-router": "^12.0.0",
"koa-static": "^5.0.0",
"koa2-cors": "^2.0.6",
"lodash": "^4.17.21",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-router": "^6.8.1",
"react-router-dom": "^6.8.1",
"uuid": "^9.0.0",
"zundo": "2.0.0-beta.18",
"zustand": "^4.3.8"
},
"devDependencies": {
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^3.1.0",
"typescript": "^4.9.3",
"vite": "^4.1.0"
}
}