-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.13 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
{
"name": "dashy",
"version": "1.0.1",
"productName": "Dashy",
"main": "main.js",
"license": "GPL-3.0-or-later",
"scripts": {
"start": "electron .",
"lint": "eslint . --cache --fix",
"pretest": "npm run lint",
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null"
},
"dependencies": {
"chokidar": "^3.0.1",
"ramda": "^0.26.1",
"source-map-support": "^0.5.12"
},
"devDependencies": {
"electron": "^6.0.7",
"electron-builder": "21.2.0",
"electron-store": "^4.0.0",
"electron-webpack": "^2.7.2",
"eslint": "^6.3.0",
"husky": ">=3.0.5",
"lint-staged": ">=9.2.5",
"prettier": "^1.18.2",
"webpack": "4.39.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
},
"build": {
"appId": "com.electron.dashy",
"win": {
"target": "nsis"
}
}
}