-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.12 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.12 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
{
"name": "react-electron-template",
"version": "1.0.0",
"author": "Lucio Rubens",
"license": "MIT",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"test": "jest --watch"
},
"dependencies": {
"@svgr/webpack": "^5.5.0",
"axios": "^0.21.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-super-responsive-table": "^5.2.0",
"react-svg-loader": "^3.0.3",
"source-map-support": "^0.5.19",
"svg-react-loader": "^0.4.6",
"tailwindcss": "^1.9.6"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-react": "^7.12.5",
"@babel/preset-typescript": "^7.12.1",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.1",
"@types/jest": "^26.0.15",
"@types/node": "12",
"@types/react-dom": "^16.9.9",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"babel-jest": "^26.6.3",
"css-loader": "^5.0.1",
"electron": "9.x",
"electron-builder": "^22.9.1",
"electron-webpack": "^2.8.2",
"electron-webpack-eslint": "^6.0.0",
"electron-webpack-ts": "^4.0.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^1.0.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.1",
"postcss": "^8.1.6",
"postcss-import": "^13.0.0",
"postcss-loader": "^4.0.4",
"prettier": "^2.1.2",
"style-loader": "^2.0.0",
"typescript": "^3.9.7",
"webpack": "^4.4.2"
},
"electronWebpack": {
"renderer": {
"webpackConfig": "webpack.renderer.config.js"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{css,html,json,md}": [
"prettier --write"
],
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}