-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.79 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
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
{
"name": "@theagilemonkeys/plasmido",
"version": "0.1.8",
"description": "Plasmido",
"keywords": [
"kafka",
"confluent",
"schema-registry",
"schema",
"registry",
"test",
"tests"
],
"repository": {
"type": "git",
"url": "https://github.com/theam/plasmido"
},
"homepage": "http://www.plasmido.com",
"license": "Apache-2.0",
"private": true,
"author": "TheAgileMonkeys - Gonzalo García Jaubert <[email protected]>",
"productName": "Plasmido",
"scripts": {
"electron-dev": "quasar dev -m electron -p 55151",
"electron-dev:debug": "DEBUG=PLASMIDO quasar dev -m electron -p 55151",
"electron-dev-tools": "DEBUG=PLASMIDO quasar dev -m electron --devtools -p 55151",
"lint": "eslint --ext .js,.ts,.vue ./",
"lint:fix": "eslint --quiet --fix --ext .js,.ts,.vue ./",
"compile": "rm -rf ./dist && tsc",
"test": "echo \"No test specified\" && exit 0",
"build": "quasar build -m electron -p 55151",
"build-all": "quasar build --target=all -m electron -p 55151"
},
"dependencies": {
"@electron/remote": "^1.2.0",
"@quasar/extras": "1.10.4",
"@theagilemonkeys/plasmido-schema-registry": "^0.1.5",
"@types/nedb": "^1.8.11",
"@types/socket.io": "^2.1.13",
"axios": "^0.21.1",
"core-js": "^3.6.5",
"electron-debug": "^3.2.0",
"express": "^4.17.1",
"jsoneditor": "^9.5.1",
"kafkajs": "^1.15.0",
"lodash": "^4.17.21",
"mappersmith": "^2.34.0",
"module": "^1.2.5",
"nedb": "^1.8.0",
"quasar": "2.0.0-beta.15",
"random-words": "^1.1.1",
"socket.io": "^4.0.0",
"socket.io-client": "^4.0.0",
"source-map-support": "^0.5.19",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@quasar/app": "3.0.0-beta.19",
"@types/jsoneditor": "^8.6.1",
"@types/lodash": "^4.14.170",
"@types/node": "^10.17.15",
"@types/random-words": "^1.1.1",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"@vue/devtools": "^6.0.0-beta.6",
"babel-eslint": "^10.0.1",
"prettier": "^2.5.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"electron": "12.0.2",
"electron-devtools-installer": "^3.2.0",
"electron-packager": "^14.2.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-vue": "^7.0.0"
},
"browserslist": [
"last 10 Chrome versions",
"last 10 Firefox versions",
"last 4 Edge versions",
"last 7 Safari versions",
"last 8 Android versions",
"last 8 ChromeAndroid versions",
"last 8 FirefoxAndroid versions",
"last 10 iOS versions",
"last 5 Opera versions"
],
"engines": {
"node": ">= 10.18.1",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}