-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
executable file
·114 lines (114 loc) · 3.67 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
112
113
114
{
"name": "onepoint",
"author": "Edwiin Tsang <boxizen@gmail.com>",
"version": "0.1.6",
"homepage": "https://www.1ptai.com/",
"description": "An Electron boilerplate including TypeScript, React, Jest and ESLint.",
"main": ".webpack/main",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"release": "electron-forge publish",
"lint": "eslint . --ext js,ts",
"lint-fix": "eslint --ext .ts,.tsx --fix .",
"lint-staged": "lint-staged",
"format": "prettier --write .",
"format-check": "prettier --check .",
"test": "jest",
"prepare": "husky install",
"rebuild": "./node_modules/.bin/electron-rebuild"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"yarn format",
"yarn lint"
]
},
"keywords": [],
"license": "MIT",
"dependencies": {
"applescript": "^1.0.0",
"chatgpt": "^5.1.3",
"electron-clipboard-watcher": "^1.0.1",
"electron-log": "^5.0.0-beta.16",
"electron-store": "^8.1.0",
"i18next": "^22.4.15",
"i18next-http-backend": "^2.2.0",
"node-abi": "^3.33.0",
"openai": "^3.2.1",
"phantomjscloud": "^3.5.5",
"pubsub-js": "^1.9.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hot-loader": "4.13.0",
"react-i18next": "^12.2.0",
"react-markdown": "^8.0.6",
"react-syntax-highlighter": "^15.5.0",
"socks-proxy-agent": "^7.0.0",
"styled-components": "5.3.0"
},
"devDependencies": {
"@babel/core": "7.14.6",
"@babel/plugin-transform-runtime": "7.14.5",
"@babel/preset-env": "7.14.5",
"@babel/preset-react": "7.14.5",
"@babel/preset-typescript": "7.14.5",
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@electron-forge/cli": "^6.0.4",
"@electron-forge/maker-deb": "^6.0.4",
"@electron-forge/maker-rpm": "^6.0.4",
"@electron-forge/maker-squirrel": "^6.0.4",
"@electron-forge/maker-zip": "^6.0.4",
"@electron-forge/plugin-webpack": "^6.1.0",
"@marshallofsound/webpack-asset-relocator-loader": "0.5.0",
"@reduxjs/toolkit": "^1.9.3",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "11.2.7",
"@types/electron-devtools-installer": "2.2.0",
"@types/jest": "26.0.23",
"@types/react": "17.0.11",
"@types/react-dom": "17.0.8",
"@types/react-syntax-highlighter": "^15.5.6",
"@types/styled-components": "5.1.10",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vercel/webpack-asset-relocator-loader": "^1.7.3",
"@zeit/webpack-asset-relocator-loader": "^0.8.0",
"ajv": "^7",
"ajv-formats": "^2.1.1",
"antd": "^5.3.3",
"babel-loader": "8.2.2",
"commitizen": "^4.3.0",
"cross-env": "7.0.3",
"cz-conventional-changelog": "^3.3.0",
"electron": "^24.0.0",
"electron-rebuild": "^3.2.9",
"eslint": "^8.37.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-standard": "5.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"file-loader": "^6.2.0",
"html2plaintext": "^2.1.4",
"husky": "^8.0.3",
"jest": "27.0.4",
"lint-staged": "^13.2.0",
"npm-run-all": "4.1.5",
"prettier": "2.3.1",
"react-redux": "^8.0.5",
"ts-jest": "27.0.3",
"typescript": "4.3.4",
"wait-on": "5.3.0",
"watcher": "^2.2.2"
}
}