-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.17 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.17 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
{
"name": "expr-tool",
"version": "2.0.0",
"description": "Flespi expression tools",
"productName": "exprTool",
"author": "Evgenij Spitsyn <spev@gurtam.team>",
"type": "module",
"private": true,
"scripts": {
"lint": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\"",
"format": "prettier --write \"**/*.{js,vue,scss,html,md,json}\" --ignore-path .gitignore",
"test": "echo \"No test specified\" && exit 0",
"dev": "quasar dev",
"build": "quasar build -m spa",
"deploy": "rm -rf dist && npm run build && rm -rf deploy && mkdir deploy && cp -R dist/spa/* LICENSE package.json deploy && cp README.md deploy/README.md && node_modules/git-directory-deploy/bin/git-directory-deploy.sh -ddeploy -bgh-pages -rgit@git.gurtam.net:flespi/frontend/exprtool && rm -rf deploy && git push github gh-pages",
"postinstall": "quasar prepare"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/language": "^6.12.3",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.1",
"@lezer/highlight": "^1.2.3",
"@lezer/javascript": "^1.5.4",
"@quasar/extras": "^1.18.0",
"axios": "^1.13.1",
"flespi-io-js": "git+ssh://git@git.gurtam.net:flespi/frontend/flespi-io-js.git",
"mitt": "^3.0.1",
"pinia": "^3.0.4",
"quasar": "^2.19.3",
"vue": "^3.5.32",
"vue-i18n": "^11.3.2",
"vue-router": "^5.0.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@intlify/unplugin-vue-i18n": "^11.0.7",
"@quasar/app-vite": "^2.6.0",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"autoprefixer": "^10.5.0",
"eslint": "^10.2.1",
"eslint-plugin-vue": "^10.8.0",
"git-directory-deploy": "^1.5.1",
"globals": "^17.5.0",
"postcss": "^8.5.10",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vite-plugin-checker": "^0.13.0",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^3.2.7"
},
"engines": {
"node": "^28 || ^26 || ^24 || ^22 || ^20",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}