forked from bdash-app/bdash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.6 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.6 KB
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
{
"private": true,
"name": "Bdash",
"version": "1.8.3",
"productName": "Bdash",
"description": "A simple business intelligence application.",
"homepage": "https://github.com/bdash-app/bdash",
"author": {
"name": "Kazuhito Hokamura",
"email": "k.hokamura@gmail.com"
},
"scripts": {
"start": "electron app/development",
"watch": "webpack --mode=development --watch",
"test": "yarn run test:unit && yarn run test:integration",
"test:unit": "electron-mocha --renderer --color --grep @remote --invert \"./test/unit/**/*.test.{ts,tsx}\"",
"test:unit:remote": "electron-mocha --renderer --color --grep @remote \"./test/unit/**/*.test.{ts,tsx}\"",
"test:build": "webpack --env.BUILD_ENV=test --mode=development && electron-builder build --config electron-builder.test.yml --publish never --dir",
"test:integration": "yarn run test:build && mocha --exit 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}\"",
"publish": "webpack --env.BUILD_ENV=production --mode=production && electron-builder build --publish always",
"ci": "yarn run lint && yarn run test"
},
"dependencies": {
"@fortawesome/fontawesome-free": "5.12.0",
"@google-cloud/bigquery": "0.7.0",
"aws-sdk": "2.259.1",
"classnames": "2.2.5",
"codemirror": "~5.49.2",
"csv-stringify": "2.0.1",
"electron-is-dev": "1.1.0",
"electron-log": "3.0.9",
"electron-updater": "4.2.0",
"fs-extra": "5.0.0",
"immup": "3.0.0",
"js-yaml": "3.10.0",
"lodash": "~4.17.19",
"markdown-table": "1.1.2",
"moment": "2.20.1",
"mysql2": "1.7.0",
"pg": "7.4.3",
"plotly.js-basic-dist-min": "1.57.1",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-micro-flyout": "1.0.1",
"react-modal": "3.1.10",
"react-select": "~3.0.8",
"react-splitter-layout": "4.0.0",
"sqlite3": "^5.0.2",
"td": "0.3.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/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",
"@types/webdriverio": "4.13.3",
"@typescript-eslint/eslint-plugin": "3.4.0",
"@typescript-eslint/parser": "3.4.0",
"clean-webpack-plugin": "0.1.19",
"copy-webpack-plugin": "4.5.1",
"css-loader": "0.28.8",
"electron": "7.1.12",
"electron-builder": "21.2.0",
"electron-mocha": "~8.2.1",
"electron-notarize": "0.3.0",
"electron-publisher-s3": "20.14.4",
"eslint": "~7.3.1",
"eslint-config-prettier": "~6.11.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "~7.20.0",
"execa": "0.9.0",
"file-loader": "~4.3.0",
"mini-css-extract-plugin": "~0.8.0",
"prettier": "~1.19.1",
"spectron": "9.0.0",
"ts-loader": "~7.0.5",
"ts-node": "5.0.1",
"typescript": "^3.9.5",
"url-loader": "0.6.2",
"webpack": "4.41.2",
"webpack-cli": "3.3.10",
"webpack-node-externals": "1.6.0"
},
"resolutions": {
"@types/react": "16.8.25",
"@types/react-dom": "16.8.5"
},
"license": "MIT"
}