-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.62 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
{
"name": "electronTest",
"version": "1.0.0",
"main": "index.js",
"author": "Naoki Maeda <maeda.naoki.md9@gmail.com>",
"license": "MIT",
"scripts": {
"commit": "git-cz",
"dev": "webpack --watch --config webpack.dev.ts",
"build": "webpack --config webpack.prod.ts",
"start": "electron ./dist/main.js"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/node": "^14.14.22",
"@types/webpack": "^4.41.26",
"@types/webpack-merge": "^4.1.5",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"commitizen": "^4.2.3",
"css-loader": "^5.0.1",
"cz-conventional-changelog": "^3.3.0",
"electron": "^11.2.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"remark-cli": "^9.0.0",
"remark-preset-lint-markdown-style-guide": "^4.0.0",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"webpack": "^5.18.0",
"webpack-cli": "^4.4.0",
"webpack-merge": "^5.7.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,d.ts}": [
"prettier --write",
"git add"
],
"*.md": [
"remark -qf"
]
}
}