antares/package.json

116 lines
3.2 KiB
JSON
Raw Normal View History

2020-04-30 17:48:53 +02:00
{
"name": "antares",
"productName": "Antares",
2021-04-22 15:18:07 +02:00
"version": "0.1.4",
2020-06-10 19:29:10 +02:00
"description": "A cross-platform easy to use SQL client.",
2020-04-30 17:48:53 +02:00
"license": "MIT",
2020-12-01 16:48:20 +01:00
"repository": "https://github.com/Fabio286/antares.git",
2020-04-30 17:48:53 +02:00
"scripts": {
2020-05-31 17:56:33 +02:00
"dev": "cross-env NODE_ENV=development electron-webpack dev",
2020-04-30 17:48:53 +02:00
"compile": "electron-webpack",
"build": "cross-env NODE_ENV=production npm run compile && electron-builder",
2021-03-26 16:52:49 +01:00
"build:appx": "npm run build -- --win appx",
"release": "standard-version",
"release:pre": "npm run release -- --prerelease alpha",
"test": "npm run lint",
"lint": "eslint . --ext .js,.vue && stylelint \"./src/**/*.{css,scss,sass,vue}\"",
"lint:fix": "eslint . --ext .js,.vue --fix && stylelint \"./src/**/*.{css,scss,sass,vue}\" --fix"
2020-04-30 17:48:53 +02:00
},
2020-05-30 19:07:34 +02:00
"author": "Fabio Di Stasio <fabio286@gmail.com>",
2020-04-30 17:48:53 +02:00
"build": {
2020-12-01 16:48:20 +01:00
"appId": "com.fabio286.antares",
2020-06-19 18:03:52 +02:00
"artifactName": "${productName}-${version}-${os}_${arch}.${ext}",
"win": {
2021-03-13 19:30:57 +01:00
"target": [
"nsis",
"portable"
]
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"deb",
"AppImage"
],
"category": "Development"
2021-01-14 18:11:36 +01:00
},
"appImage": {
"license": "./LICENSE",
"category": "Development"
2021-03-06 17:11:03 +01:00
},
"portable": {
"artifactName": "${productName}-${version}-portable.exe"
2021-03-26 16:52:49 +01:00
},
2021-03-28 11:55:15 +02:00
"appx": {
2021-03-26 16:52:49 +01:00
"displayName": "Antares SQL Client",
"identityName": "62514FabioDiStasio.AntaresSQLClient",
"publisher": "CN=1A2729ED-865C-41D2-9038-39AE2A63AA52",
"applicationId": "FabioDiStasio.AntaresSQLClient"
}
2020-04-30 17:48:53 +02:00
},
2020-05-07 17:45:04 +02:00
"electronWebpack": {
"renderer": {
"webpackConfig": "webpack.config.js"
}
},
2020-04-30 17:48:53 +02:00
"dependencies": {
"@electron/remote": "^1.1.0",
2021-01-25 09:29:36 +01:00
"@mdi/font": "^5.9.55",
"ace-builds": "^1.4.12",
2020-11-13 12:39:40 +01:00
"electron-log": "^4.3.0",
"electron-store": "^8.0.0",
"electron-updater": "^4.3.5",
2021-02-13 18:45:16 +01:00
"faker": "^5.3.1",
2021-04-11 12:35:16 +02:00
"marked": "^2.0.2",
2020-10-26 09:26:25 +01:00
"moment": "^2.29.1",
"mysql2": "^2.2.5",
"node-sql-parser": "^3.1.0",
2020-11-13 17:49:09 +01:00
"pg": "^8.5.1",
"pgsql-ast-parser": "^7.0.2",
2020-05-04 17:33:50 +02:00
"source-map-support": "^0.5.16",
"spectre.css": "^0.5.9",
2021-04-19 19:15:06 +02:00
"sql-formatter": "^4.0.2",
"v-mask": "^2.2.4",
2021-01-25 09:29:36 +01:00
"vue-i18n": "^8.22.4",
2020-10-26 09:26:25 +01:00
"vuedraggable": "^2.24.3",
"vuex": "^3.6.0"
2020-04-30 17:48:53 +02:00
},
"devDependencies": {
"@babel/eslint-parser": "^7.13.14",
2020-05-31 17:56:33 +02:00
"cross-env": "^7.0.2",
"electron": "^12.0.5",
2020-10-26 09:26:25 +01:00
"electron-builder": "^22.9.1",
"electron-devtools-installer": "^3.2.0",
2020-04-30 17:48:53 +02:00
"electron-webpack": "^2.8.2",
"electron-webpack-vue": "^2.4.0",
2021-04-14 10:42:00 +02:00
"eslint": "^7.24.0",
2020-12-01 16:48:20 +01:00
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
2020-04-30 17:48:53 +02:00
"eslint-plugin-node": "^11.1.0",
2021-04-14 10:42:00 +02:00
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^7.9.0",
"node-sass": "^5.0.0",
2021-01-25 09:29:36 +01:00
"sass-loader": "^10.1.1",
2021-04-14 10:42:00 +02:00
"standard-version": "^9.2.0",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-scss": "^3.19.0",
"vue": "^2.6.12",
2020-09-06 16:47:51 +02:00
"vue-template-compiler": "^2.6.12",
2021-01-25 09:29:36 +01:00
"webpack": "^4.46.0"
2020-04-30 17:48:53 +02:00
}
}