-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
65 lines (65 loc) · 2.22 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "airflow-code-editor",
"version": "7.8.0",
"description": "A plugin for [Apache Airflow](https://github.com/apache/airflow) that allows you to edit DAGs in browser. It provides a file managing interface within specified directories and it can be used to edit and download your files. If git support is enabled, the DAGs are stored in a Git repository. You may use it to view Git history, review local changes and commit.",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/andreax79/airflow-code-editor.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/andreax79/airflow-code-editor/issues"
},
"homepage": "https://github.com/andreax79/airflow-code-editor#readme",
"scripts": {
"dev": "vite --host 0.0.0.0",
"watch": "vite build --watch",
"build": "vite build",
"test:unit": "vitest --environment jsdom",
"lint": "eslint src --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.3.2",
"@codemirror/lang-python": "^6.1.7",
"@codemirror/lang-sql": "^6.8.0",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/language": "^6.10.8",
"@codemirror/theme-one-dark": "^6.1.2",
"@fsegurai/codemirror-theme-bundle": "^6.1.2",
"@grapoza/vue-tree": "^5.2.2",
"@kyvg/vue3-notification": "^3.4.1",
"@replit/codemirror-emacs": "^6.1.0",
"@replit/codemirror-vim": "^6.2.1",
"axios": "^1.7.4",
"codemirror": "^6.0.1",
"crc-32": "^1.2.2",
"splitpanes": "^3.1.1",
"uuid": "^10.0.0",
"vue": "^3.4.29",
"vue-good-table-next": "^0.2.1",
"vue-simple-context-menu": "^4.0.4",
"vue-universal-modal": "^1.1.4"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.6.0",
"@vitejs/plugin-vue": "^4.5.0",
"@vue/eslint-config-prettier": "^7.0.0",
"eslint": "^8.54.0",
"eslint-plugin-vue": "^9.18.1",
"jsdom": "^22.1.0",
"prettier": "^3.1.0",
"vite": "^5.4.14",
"vitest": "^0.34.6"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}