-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
{
"name": "json-to-go",
"version": "0.0.1",
"description": "Online tool that convert JSON to Go",
"author": "lhlyu",
"scripts": {
"fmt": "prettier --write .",
"dev": "vite --host",
"build": "vue-tsc --noEmit && vite build",
"gh": "vue-tsc --noEmit && cross-env MODE=gh vite build --outDir ./docs",
"vercel": "vue-tsc --noEmit && vite build",
"serve": "vite preview --host",
"test": "jest",
"eg": "ts-node src/core/run.ts"
},
"license": "MIT",
"dependencies": {
"ace-builds": "^1.4.12",
"clipboard": "^2.0.8",
"debounce": "^1.2.1",
"humps": "^2.0.1",
"mitt": "^2.1.0",
"primeicons": "^4.1.0",
"primevue": "^3.5.0",
"vue": "^3.0.11",
"web-storage-cache": "^1.1.1"
},
"devDependencies": {
"@types/ace": "^0.0.46",
"@types/debounce": "^1.2.0",
"@types/humps": "^2.0.0",
"@types/jest": "^27.0.3",
"@types/vfile-message": "^2.0.0",
"@vitejs/plugin-vue": "^1.2.2",
"@vue/compiler-sfc": "^3.0.11",
"autoprefixer": "^10.2.5",
"cross-env": "^7.0.3",
"jest": "^27.0.4",
"postcss": "^8.2.15",
"postcss-loader": "^5.3.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"rollup-plugin-external-globals": "^0.6.1",
"sass": "^1.32.13",
"ts-jest": "^27.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.2.4",
"vite": "^2.3.3",
"vue-tsc": "^0.1.4"
}
}