-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
47 lines (47 loc) · 915 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
39
40
41
42
43
44
45
46
47
{
"name": "electron-next",
"version": "3.1.5",
"description": "Build Electron apps using Next.js",
"main": "index.js",
"repository": "leo/electron-next",
"scripts": {
"precommit": "lint-staged",
"test": "xo"
},
"keywords": [
"electron",
"next",
"electron.js",
"next.js"
],
"files": [
"index.js"
],
"xo": {
"extends": "prettier",
"rules": {
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0
}
},
"lint-staged": {
"*.js": [
"npm run test",
"prettier --single-quote --no-semi --write",
"git add"
]
},
"author": "leo",
"license": "MIT",
"dependencies": {
"app-root-path": ">=2.0.1",
"electron-is-dev": ">=0.3.0"
},
"devDependencies": {
"eslint-config-prettier": "2.9.0",
"husky": "0.14.3",
"lint-staged": "7.0.0",
"prettier": "1.10.2",
"xo": "0.20.3"
}
}