forked from bytebase/bytebase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.15 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.15 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
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
{
"name": "bytebase",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"dev": "npm run copy-sql-review-file && vite --mode dev",
"release": "npm run copy-sql-review-file && vite build --mode release --outDir=../server/dist --emptyOutDir",
"dev-docker": "export NODE_OPTIONS=--max_old_space_size=4096 && vite build --mode dev",
"release-docker": "export NODE_OPTIONS=--max_old_space_size=4096 && vite build --mode release",
"lint": "eslint --cache --ext .js,.ts,.tsx,.vue src",
"lint:fix": "eslint --cache --ext .js,.ts,.tsx,.vue --fix src",
"test": "vitest",
"coverage": "vitest --coverage",
"copy-sql-review-file": "sh ./scripts/copy_sql_review_files.sh"
},
"dependencies": {
"@bytebase/vue-kbar": "0.1.8",
"@markdoc/markdoc": "0.1.7",
"@soerenmartius/vue3-clipboard": "0.1.2",
"@tanstack/table-core": "8.5.13",
"@tanstack/vue-table": "8.5.13",
"@vueuse/core": "9.2.0",
"axios": "0.27.2",
"bootstrap": "5.2.1",
"canvas-confetti": "1.5.1",
"dayjs": "1.11.5",
"dompurify": "2.4.0",
"downloadjs": "1.4.7",
"escape-string-regexp": "5.0.0",
"highlight.js": "11.6.0",
"inter-ui": "3.19.3",
"js-yaml": "4.1.0",
"lodash-es": "4.17.21",
"monaco-editor": "0.34.0",
"naive-ui": "2.33.2",
"node-sql-parser": "4.5.0",
"papaparse": "5.3.2",
"pev2": "1.5.0",
"pinia": "2.0.22",
"qs": "6.11.0",
"rollup": "2.79.0",
"semver": "7.3.7",
"slug": "8.0.0",
"splitpanes": "3.1.1",
"sql-formatter": "10.6.0",
"uuid": "9.0.0",
"v-code-diff": "0.3.12",
"vue": "3.2.39",
"vue-i18n": "9.2.2",
"vue-router": "4.1.5",
"vueuc": "0.4.48"
},
"devDependencies": {
"@iconify/json": "2.1.105",
"@intlify/vite-plugin-vue-i18n": "6.0.1",
"@popperjs/core": "2.11.6",
"@rollup/plugin-yaml": "3.1.0",
"@tailwindcss/forms": "0.5.3",
"@tailwindcss/line-clamp": "0.4.2",
"@tailwindcss/typography": "0.5.7",
"@types/canvas-confetti": "1.4.3",
"@types/dompurify": "2.3.4",
"@types/downloadjs": "1.4.3",
"@types/js-yaml": "4.0.5",
"@types/lodash-es": "4.17.6",
"@types/node": "16.11.58",
"@types/papaparse": "5.3.5",
"@types/prettier": "2.7.0",
"@types/qs": "6.9.7",
"@types/semver": "7.3.12",
"@types/slug": "5.0.3",
"@types/splitpanes": "2.2.1",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.36.2",
"@typescript-eslint/parser": "5.36.2",
"@vicons/ionicons5": "0.12.0",
"@vitejs/plugin-vue": "3.1.0",
"@vue/compiler-sfc": "3.2.39",
"@vue/eslint-config-typescript": "11.0.1",
"autoprefixer": "10.4.8",
"eslint": "8.23.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-vue": "9.4.0",
"jquery": "3.6.1",
"popper.js": "1.16.1",
"postcss": "8.4.16",
"prettier": "2.7.1",
"tailwindcss": "3.1.8",
"typescript": "4.8.3",
"unplugin-icons": "0.14.9",
"unplugin-vue-components": "0.22.4",
"vite": "3.1.0",
"vitest": "0.23.1",
"vue-tsc": "0.40.13"
},
"peerDependencies": {
"@popperjs/core": "^2.11.6",
"jquery": "1.9.1 - 3",
"popper.js": "^1.16.1"
}
}