forked from klarna/electron-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 942 Bytes
/
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
{
"private": true,
"name": "electron-redux",
"version": "1.5.1",
"description": "Using redux in electron",
"main": "index.js",
"repository": "https://github.com/hardchor/electron-redux",
"author": "Burkhard Reffeling <burkhard.reffeling@gmail.com> (http://burgiblog.com)",
"license": "MIT",
"dependencies": {
"eslint": "^7.3.1",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"husky": "^4.2.5",
"lerna": "^3.13.4",
"lint-staged": "^10.2.2",
"prettier-eslint-cli": "^5.0.0"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"test": "lerna run test"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.{js,jsx,css,md}": [
"prettier-eslint --single-quote --trailing-comma=all --print-width=100 --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}