generated from electron/electron-quick-start-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.72 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
{
"name": "@furystack/fury-commander",
"version": "0.1.0",
"description": "A NC clone in Electron",
"scripts": {
"build": "tsc --build && yarn webpack --config ./webpack.config.js",
"lint": "eslint -c .eslintrc --ext .ts ./src",
"watch:tsc": "tsc --build -w",
"watch:webpack": "yarn webpack -w",
"start": "concurrently -k \"yarn watch:tsc\" \"yarn watch:webpack\" \"electron ./dist/main.js\"",
"clean": "rimraf dist bundle"
},
"repository": "https://github.com/electron/electron-quick-start-typescript",
"keywords": [
"Electron",
"typescript",
"furystack",
"Norton Commander",
"Total Commander"
],
"author": "GitHub",
"license": "CC0-1.0",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --ext .tsx,.ts --cache --fix",
"git add"
],
"*.{js,jsx}": [
"git add"
]
},
"devDependencies": {
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"concurrently": "^6.4.0",
"electron": "^16.0.2",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsdoc": "^37.0.3",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@furystack/inject": "^4.0.76",
"@furystack/shades": "^3.7.2",
"@furystack/shades-common-components": "^1.8.2",
"@furystack/utils": "^1.2.46"
}
}