-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.85 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.85 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
{
"name": "tim",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint --ext .js,.vue --ignore-path .eslintignore",
"copy-monaco": "cpx \"node_modules/monaco-editor/**/*\" public/monaco-editor",
"copy-monaco-kusto": "cpx \"node_modules/@kusto/monaco-kusto/release/min/**/*\" public/monaco-editor/min/vs/language/kusto",
"prepublish": "npm-run-all copy-monaco copy-monaco-kusto",
"prepublish.explanation": "copying monaco and monaco-kusto to public folder so it will be available to load monaco and monaco-kusto in runtime (other method require ejecting create-react-app)"
},
"dependencies": {
"@azure/msal-browser": "^2.33.0",
"@kusto/monaco-kusto": "^5.3.10",
"@mdi/font": "^7.1.96",
"@monaco-editor/loader": "^1.3.2",
"ag-grid-community": "^29.0.0",
"ag-grid-vue": "^29.0.0",
"axios": "^1.3.2",
"cpx": "^1.5.0",
"handlebars": "^4.7.7",
"js-yaml": "^4.1.0",
"localforage": "^1.9.0",
"monaco-editor": "^0.35.0",
"monaco-yaml": "^3.2.1",
"ms": "^2.1.3",
"vue": "^2.7.10",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.3.4",
"vuetify": "^2.6.10",
"vuex": "^3.5.1"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.6.1",
"@vue/test-utils": "^1.3.0",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-vue": "^8.0.1",
"npm-run-all": "^4.1.5",
"sass": "^1.54.9",
"unplugin-vue-components": "^0.22.7",
"vite": "^3.2.7",
"vite-plugin-vue2": "^2.0.2",
"vue-template-compiler": "^2.7.10"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}