-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.95 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.95 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
{
"name": "@aiswarm/ui-web",
"version": "0.1.9",
"description": "",
"main": "index.js",
"type": "module",
"keywords": [
"@aiswarm:plugin"
],
"author": "Ravi Gairola <[email protected]>",
"license": "MIT",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "echo '(no tests)'",
"prepare": "husky",
"link": "npm link ../api-graphql"
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix --max-warnings=0",
"prettier --write"
],
"*.{json,md,yml,yaml,graphql,css,scss}": [
"prettier --write"
]
},
"dependencies": {
"@apollo/client": "^3.8.7",
"@apollo/link-ws": "^2.0.0-beta.3",
"@mdi/font": "^7.3.67",
"@vue/apollo-composable": "^4.0.0-beta.11",
"core-js": "^3.8.3",
"cors": "^2.8.5",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"polka": "^0.5.2",
"sirv": "^2.0.3",
"vue": "^3.2.13",
"vue-router": "^4.0.13",
"vuetify": "^3.4.2"
},
"peerDependencies": {
"@aiswarm/api-graphql": "^0.1.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@eslint/js": "^9.39.0",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-vue": "^10.5.0",
"globals": "^17.0.0",
"husky": "^9.1.0",
"lint-staged": "^16.0.0",
"prettier": "^3.6.0",
"vue-eslint-parser": "^10.4.0",
"pug": "^3.0.2",
"pug-plain-loader": "^1.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stylus": "^0.62.0",
"stylus-loader": "^7.1.3"
},
"browserslist": [
"> 3%",
"last 2 versions",
"not dead",
"not ie 11"
]
}