This repository has been archived by the owner on Jun 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.27 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
{
"name": "perfect-pixel",
"version": "0.7.6",
"description": "Perfect pixel application",
"license": "SEE LICENSE IN LICENCE.md",
"keywords": [
"perfect pixel"
],
"author": {
"name": "Roman Bruns",
"email": "roman.bruns@mail.ru",
"url": "https://github.com/slotovi4"
},
"private": true,
"main": "build/homeWindow.js",
"homepage": "./",
"scripts": {
"start": "react-scripts-ts start",
"start:electron": "yarn compile && electron ./build/homeWindow.js",
"compile": "yarn compile:react && yarn compile:electron",
"compile:react": "GENERATE_SOURCEMAP=false react-scripts-ts build",
"compile:electron": "tsc ./src/electron/** --outDir ./build",
"build:mac": "yarn compile && electron-builder --mac",
"build:win": "yarn compile && electron-builder --win --x64 --ia32",
"test": "react-scripts-ts test --coverage --env=jsdom"
},
"dependencies": {
"electron-is-dev": "^1.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts-scss-ts": "2.17.1"
},
"devDependencies": {
"@bem-react/classname": "^1.5.8",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^26.0.16",
"@types/node": "^14.14.10",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"electron": "^11.0.3",
"electron-builder": "^22.9.1",
"eslint": "^7.14.0",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.3.0",
"lint-staged": "^10.5.3",
"typescript": "^4.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts,tsx,jsx}": [
"eslint --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"moduleNameMapper": {
"theme": "<rootDir>/src/components/theme/",
"library": "<rootDir>/src/components/library/"
},
"coverageReporters": [
"text",
"html"
]
},
"resolutions": {
"handlebars": "4.5.0"
},
"build": {
"extends": null,
"npmRebuild": false,
"files": [
"package.json",
"build/**"
],
"mac": {
"icon": "build/icons/icon_512x512.icns"
},
"win": {
"icon": "build/icons/icon_256x256.ico"
}
}
}