-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.98 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
{
"name": "jemba",
"version": "1.4.2",
"description": "Cli tool and UI for JembaDb",
"author": "Book Pauk <bookpauk@gmail.com>",
"license": "CC0-1.0",
"homepage": "https://github.com/bookpauk/jemba#readme",
"bugs": {
"url": "https://github.com/bookpauk/jemba/issues"
},
"scripts": {
"dev": "nodemon --inspect --ignore server/public --ignore server/data --ignore client --exec 'node server'",
"build:client": "webpack --config build/webpack.prod.config.js",
"build:linux": "pkg -t node16-linux-x64 -C GZip -o dist/linux/jemba .",
"build:win": "pkg -t node16-win-x64 -C GZip -o dist/win/jemba ."
},
"repository": {
"type": "git",
"url": "git://github.com/bookpauk/jemba.git"
},
"keywords": [
"JembaDb",
"Cli"
],
"engines": {
"node": ">=16.16.0"
},
"bin": "server/index.js",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/eslint-parser": "^7.19.1",
"@babel/eslint-plugin": "^7.19.1",
"@babel/plugin-proposal-decorators": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@vue/compiler-sfc": "^3.2.22",
"babel-loader": "^9.1.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.2",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint": "^8.29.0",
"eslint-plugin-vue": "^9.8.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.2",
"pkg": "^5.8.0",
"terser-webpack-plugin": "^5.3.6",
"vue-eslint-parser": "^9.1.0",
"vue-loader": "^17.0.1",
"vue-style-loader": "^4.1.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-middleware": "^6.0.1",
"webpack-hot-middleware": "^2.25.3",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@quasar/extras": "^1.15.8",
"fs-extra": "^10.1.0",
"jembadb": "^5.1.7",
"lodash": "^4.17.21",
"minimist": "^1.2.7",
"quasar": "^2.10.2",
"vue": "^3.2.22",
"vue-router": "^4.1.6",
"vuex": "^4.1.0",
"vuex-persistedstate": "^4.1.0",
"ws": "^8.11.0"
}
}