-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.38 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
{
"name": "gomem-gacha",
"version": "1.1.0",
"author": "유영재",
"description": "우왁굳을 위한 고정맴버 뽑기",
"homepage": ".",
"main": "build/electron/main.js",
"private": true,
"dependencies": {
"cz-emoji-conventional": "^1.0.1",
"electron-devtools-installer": "^3.2.0",
"electron-reload": "^2.0.0-alpha.1",
"eslint-config-react-app": "7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "6",
"react-scripts": "^5.0.1",
"use-sound": "^4.0.1",
"web-vitals": "^2.1.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"postinstall": "electron-builder install-app-deps",
"electron:dev": "concurrently \"cross-env BROWSER=none yarn start\" \"tsc -p electron -w\" \"tsc -p electron && electron .\"",
"electron:build": "yarn build && tsc -p electron && electron-builder",
"eject": "react-scripts eject"
},
"build": {
"extends": null,
"files": [
"build/**/*"
],
"directories": {
"buildResources": "assets"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/electron-devtools-installer": "^2.2.0",
"@types/jest": "^27.0.2",
"@types/node": "^18.11.15",
"@types/react": "^18.0.25",
"@types/react-dom": "^17.0.11",
"@types/styled-components": "^5.1.19",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"babel-plugin-module-resolver": "^4.1.0",
"commitizen": "^4.2.5",
"concurrently": "^6.4.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"cz-conventional-emoji": "^1.0.2",
"electron": "^23.1.3",
"electron-builder": "^22.13.1",
"eslint-import-resolver-typescript": "^3.4.0",
"prettier": "^2.8.1",
"prettier-eslint": "^15.0.1",
"react-error-overlay": "6.0.9",
"styled-components": "^5.3.3",
"typescript": "^4.5.2",
"wait-on": "^6.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-emoji-conventional"
}
}
}