-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathpackage.json
111 lines (111 loc) · 3.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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"private": true,
"name": "Bdash",
"version": "1.16.3",
"productName": "Bdash",
"description": "A simple business intelligence application.",
"homepage": "https://github.com/bdash-app/bdash",
"author": {
"name": "Kazuhito Hokamura",
"email": "[email protected]"
},
"scripts": {
"start": "electron app/development",
"build": "webpack --mode=development",
"watch": "webpack --mode=development --watch",
"test": "yarn run test:unit && yarn run test:integration",
"test:unit": "electron-mocha --renderer --require ts-node/register --ui tdd --color --grep @remote --invert \"./test/unit/**/*.test.{ts,tsx}\"",
"test:unit:remote": "electron-mocha --renderer --require ts-node/register --ui tdd --color --grep @remote \"./test/unit/**/*.test.{ts,tsx}\"",
"test:build": "webpack --env BUILD_ENV=test --mode=development && electron-builder build --x64 --config electron-builder.test.yml --publish never --dir",
"test:integration": "yarn run test:build && mocha --exit --require ts-node/register --ui tdd test/integration/test.ts",
"lint": "yarn run lint:eslint && yarn run lint:tsc && yarn run lint:prettier",
"lint:eslint": "eslint --ext \".js,.jsx,.ts,.tsx\" --max-warnings 0 .",
"lint:tsc": "tsc --noEmit",
"lint:prettier": "prettier --list-different \"./**/*.{js,jsx,ts,tsx,css,json}\"",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,css,json}\"",
"release:prepare": "webpack --env BUILD_ENV=production --mode=production && electron-builder build --publish always",
"ci": "yarn run lint && yarn run test:unit"
},
"dependencies": {
"@aws-sdk/client-athena": "^3.47.1",
"@aws-sdk/client-timestream-query": "^3.47.1",
"@fortawesome/fontawesome-free": "5.12.0",
"@google-cloud/bigquery": "5.6.0",
"@hokaccha/sql-formatter": "^1.4.0",
"classnames": "2.2.5",
"codemirror": "~5.58.2",
"compare-versions": "^4.1.3",
"csv-stringify": "2.0.1",
"electron-is-dev": "2.0.0",
"electron-log": "4.3.0",
"fs-extra": "5.0.0",
"immup": "3.0.0",
"js-yaml": "3.10.0",
"lodash": "~4.17.21",
"markdown-table": "1.1.2",
"moment": "2.20.1",
"mysql2": "1.7.0",
"node-fetch": "^2.6.7",
"pg": "8.7.1",
"plotly.js-basic-dist-min": "1.57.1",
"react": "16.8.6",
"react-contexify": "^6.0.0",
"react-dom": "16.8.6",
"react-linkify": "^1.0.0-alpha",
"react-micro-flyout": "1.0.1",
"react-modal": "3.1.10",
"react-select": "~3.0.8",
"react-splitter-layout": "4.0.0",
"sqlite3": "^5.1.6",
"td": "0.4.0"
},
"devDependencies": {
"@types/classnames": "2.2.10",
"@types/codemirror": "0.0.96",
"@types/csv-stringify": "1.4.1",
"@types/lodash": "4.14.157",
"@types/mocha": "2.2.46",
"@types/node": "12.12.12",
"@types/pg": "^8.6.4",
"@types/plotly.js": "1.44.21",
"@types/react": "~16.8.25",
"@types/react-dom": "~16.8.5",
"@types/react-modal": "3.10.6",
"@types/react-select": "~3.0.13",
"@types/react-splitter-layout": "3.0.0",
"@types/sqlite3": "3.1.6",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^5.2.1",
"electron": "^14.2.9",
"electron-builder": "23.6.0",
"electron-mocha": "~11.0.2",
"electron-notarize": "1.2.2",
"electron-publisher-s3": "20.17.2",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "~7.20.0",
"eslint-plugin-react-hooks": "^4.5.0",
"execa": "0.9.0",
"mini-css-extract-plugin": "~1.4.1",
"prettier": "^2.5.1",
"spectron": "^14.0.0",
"ts-loader": "~8.1.0",
"ts-node": "5.0.1",
"typescript": "^4.5.5",
"webpack": "^5.54.0",
"webpack-cli": "^4.6.0",
"webpack-node-externals": "^2.5.2"
},
"resolutions": {
"@types/react": "16.8.25",
"@types/react-dom": "16.8.5"
},
"license": "MIT",
"volta": {
"node": "16.20.2",
"yarn": "1.22.19"
}
}