-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
122 lines (122 loc) · 3.26 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "winmoji",
"productName": "winMoji",
"version": "3.0.0",
"main": "build/electron/main.js",
"private": false,
"homepage": "./",
"author": {
"name": "ryanSn <[email protected]>",
"email": "[email protected]",
"url": "https://www.winmoji.com/"
},
"license": "MIT",
"scripts": {
"prettier": "prettier --write .",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"postinstall": "electron-builder install-app-deps",
"dev": "concurrently \"cross-env BROWSER=none yarn start\" \"wait-on http://localhost:3000 && tsc -p electron -w\" \"wait-on http://localhost:3000 && tsc -p electron && electron .\"",
"build:win": "yarn build && tsc -p electron && electron-builder --win",
"build:win:ci": "yarn build && tsc -p electron && electron-builder --win -p never",
"release": "rm -rf build && yarn tsc -p electron && electron-builder build --win --publish always",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@types/styled-components": "^5.1.26",
"electron-devtools-installer": "^3.2.0",
"electron-reload": "^2.0.0-alpha.1",
"electron-store": "^8.1.0",
"electron-updater": "^4.6.4",
"fast-levenshtein": "^3.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^5.0.0",
"universal-analytics": "^0.5.3",
"styled-components": "^5.3.6",
"typescript": "^4.8.4",
"uuid": "^8.3.2",
"web-vitals": "^1.0.1",
"winmojilib": "^0.3.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/electron-devtools-installer": "^2.2.0",
"@types/fast-levenshtein": "^0.0.2",
"@types/jest": "^26.0.15",
"@types/node": "14.17.20",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/universal-analytics": "^0.4.5",
"@types/uuid": "^8.3.1",
"concurrently": "^6.3.0",
"cross-env": "^7.0.3",
"electron": "^15.5.5",
"electron-builder": "^22.11.7",
"wait-on": "^6.0.0"
},
"build": {
"extraMetadata": {
"main": "build/electron/main.js"
},
"appId": "com.rchatters.winmoji",
"copyright": "Copyright © 2017-2021 ryanSN",
"productName": "winMoji",
"win": {
"target": [
{
"target": "portable",
"arch": [
"x64",
"ia32"
]
},
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
],
"icon": "electron/assets/icons/win/icon.ico"
},
"portable": {
"artifactName": "winMoji-v${version}-portable.${ext}"
},
"nsis": {
"artifactName": "winMoji-v${version}-setup.${ext}"
},
"directories": {
"buildResources": "build"
},
"publish": [
{
"provider": "github",
"owner": "ryanSN",
"repo": "winMoji"
}
]
}
}