-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
99 lines (99 loc) · 3.25 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
{
"name": "trueblocks-explorer",
"main": "electron/index.ts",
"version": "0.1.0",
"homepage": "./",
"private": true,
"scripts": {
"start": "concurrently 'yarn develop:ui' 'open index.html'",
"compile:ui": "webpack --mode production",
"develop:ui": "webpack serve --mode development --port 1234",
"compile:electron": "tsc -p tsconfig_electron.json",
"develop:electron": "yarn compile:electron && electron dist/electron/index.js",
"compile": "concurrently 'yarn compile:ui' 'yarn compile:electron'",
"develop": "concurrently 'yarn develop:ui' 'yarn develop:electron'",
"generate:sdk": "node_modules/.bin/tsc -p src/sdk && node src/sdk/dist/index.js",
"test": "jest --setupFiles dotenv/config --verbose",
"test:e2e": "cypress open"
},
"browserslist": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version"
],
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/dotenv-safe": "^8.1.1",
"@types/jest": "^26.0.20",
"@types/mousetrap": "^1.6.8",
"@types/react-dom": "^17.0.2",
"@types/react-syntax-highlighter": "^13.5.0",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"@yarnpkg/pnpify": "^2.4.0",
"concurrently": "^6.0.0",
"css-loader": "^5.1.2",
"cypress": "^6.6.0",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.1.1",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.3",
"ts-loader": "^8.0.18",
"typescript": "4.1.5",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@apidevtools/swagger-parser": "^10.0.3",
"@testing-library/react": "^11.2.6",
"@testing-library/react-hooks": "^5.1.1",
"@ts-morph/common": "^0.12.2",
"@types/js-cookie": "^2.2.6",
"@types/mustache": "^4.1.2",
"@types/react-highlight-words": "^0.16.2",
"@types/react-router-dom": "^5.1.7",
"antd": "^4.14.0",
"browserslist": "^4.19.1",
"classnames": "^2.3.0",
"comlink": "^4.3.1",
"dayjs": "^1.10.6",
"dotenv": "^8.2.0",
"dotenv-safe": "^8.2.0",
"dotenv-webpack": "^7.0.2",
"electron": "^16.0.6",
"electron-is-dev": "^2.0.0",
"electron-store": "^7.0.2",
"filesize": "^6.3.0",
"fp-ts": "^2.9.5",
"js-cookie": "^2.2.1",
"mousetrap": "^1.6.5",
"mustache": "^4.2.0",
"openapi-types": "^10.0.0",
"path-browserify": "^1.0.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-highlight-words": "^0.17.0",
"react-hotkeys-hook": "^3.3.1",
"react-jss": "^10.6.0",
"react-markdown": "^6.0.2",
"react-router-dom": "^5.2.0",
"react-syntax-highlighter": "^15.4.3",
"react-test-renderer": "^17.0.2",
"recharts": "^2.0.9",
"trueblocks-sdk": "^3.0.2",
"ts-morph": "^13.0.2"
}
}