-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.3 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
96
97
98
{
"name": "nullable",
"version": "0.1.0",
"description": "One more SQL database manager. A cute one.",
"main": "index.js",
"scripts": {
"start": "electron .",
"pack": "build --dir",
"dist": "build",
"app:dev": "cross-env NODE_ENV=development webpack --progress --hide-modules --watch",
"app:prod": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"app:clean": "rm -f ./public/css/app-*.css ./public/js/app-*.js ./public/fonts/*"
},
"build": {
"appId": "nullable",
"linux": {
"category": "Development",
"target": [
"pacman",
"deb",
"tar.gz"
],
"executableName": "nullable",
"synopsis": "Minimalistic SQL database manager"
},
"pacman": {
"depends": [],
"compression": "xz"
},
"win": {
"target": "NSIS"
},
"files": [
"index.js",
"LICENSE.md",
"build",
"node_modules"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/MicroDroid/null.git"
},
"keywords": [
"null",
"nullable",
"sql",
"browser",
"manager",
"sequel",
"database",
"schema"
],
"author": "Yousef Sultan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MicroDroid/nullable/issues"
},
"homepage": "https://github.com/MicroDroid/nullable#readme",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/runtime": "^7.0.0",
"babel-loader": "^8.0.2",
"bulma": "^0.7.1",
"css-loader": "^1.0.0",
"electron": "^3.0.2",
"electron-builder": "^20.28.4",
"eslint": "^5.6.0",
"eslint-plugin-vue": "^4.7.1",
"file-loader": "^2.0.0",
"koa-static": "^5.0.0",
"lodash.debounce": "^4.0.8",
"mini-css-extract-plugin": "^0.4.3",
"mysql2": "^1.6.1",
"node-sass": "^4.9.3",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"pg-native": "^3.0.0",
"sass-loader": "^7.1.0",
"sequelize": "^4.39.0",
"tedious": "^2.6.4",
"terser-webpack-plugin": "^1.1.0",
"uniqid": "^5.0.3",
"vue": "^2.5.17",
"vue-devtools": "^5.0.0-beta.1",
"vue-loader": "^15.4.2",
"vue-template-compiler": "^2.5.17",
"vuex": "^3.0.1",
"vuex-persist": "^1.6.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1"
}
}