-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.83 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
{
"name": "ibis",
"version": "1.0.0",
"main": "index.js",
"private": true,
"productName": "ibis",
"scripts": {
"test": "mocha",
"build": "rimraf dist/ && webpack --env production --progress",
"prepare": "husky install"
},
"dependencies": {
"keytar": "^7.7.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "6"
},
"devDependencies": {
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@svgr/webpack": "^6.1.0",
"@types/node": "^20.14.10",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"@vercel/webpack-asset-relocator-loader": "^1.7.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"babel-plugin-named-asset-import": "^0.3.7",
"babel-preset-react-app": "^10.0.0",
"chai": "^4.3.4",
"electron": "^31.2.0",
"electron-packager": "^15.3.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"fork-ts-checker-webpack-plugin": "^6.5.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"mocha": "^9.1.1",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"sinon": "^11.1.2",
"sinon-test": "^3.1.1",
"styled-jsx": "^4.0.1",
"terser-webpack-plugin": "^5.2.5",
"typescript": "^4.5.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"eslintConfig": {
"extends": [
"react-app",
"prettier"
]
}
}