-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
106 lines (106 loc) · 2.75 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "electron-quick-start",
"version": "1.0.0",
"description": "A minimal Electron application",
"main": "main.js",
"scripts": {
"dev": "NODE_ENV=dev node ./build/dev.js",
"build": "node ./build/build.js",
"start": "electron ./dist/",
"electron": "electron ./app",
"postinstall": "cd dist && electron-builder install-app-deps",
"pack": "electron-builder --dir",
"dist": "cd dist && electron-builder -mw",
"start:webview": "react-app-rewired start",
"build:webview": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"deploy": "standard-version --release-as patch && git push --follow-tags origin HEAD"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"webview/src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
],
"webview/src/**/*.scss": [
"stylelint --syntax scss --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"dependencies": {
"@commitlint/config-conventional": "^8.2.0",
"@types/jest": "24.0.23",
"@types/node": "12.12.14",
"@types/react": "16.9.13",
"@types/react-dom": "16.9.4",
"@types/react-router-dom": "^5.1.3",
"babel-eslint": "10.x",
"chokidar": "^3.3.0",
"commitlint": "^8.2.0",
"eslint-config-react-app": "^5.0.2",
"eslint-plugin-flowtype": "3.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "1.x",
"fs-extra": "^8.1.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"lowdb": "^1.0.0",
"react": "^16.12.0",
"react-app-rewired": "^2.1.5",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"rimraf": "^3.0.0",
"standard-version": "^8.0.1",
"typescript": "3.7.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"electron": "^7.1.2",
"electron-builder": "^21.2.0",
"eslint": "6.x",
"stylelint": "11.0.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-scss": "3.12.1"
},
"homepage": "./",
"repository": "https://github.com/electron/electron-quick-start",
"author": "pfan123",
"license": "CC0-1.0"
}