-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
146 lines (146 loc) · 3.94 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "birdskitchen",
"appname": "Birds Kitchen",
"version": "0.8.3",
"description": "A free and open source recipe manager",
"private": true,
"main": "public/electron.js",
"license": "GPL-3.0 License",
"homepage": "./",
"dependencies": {
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"cheerio": "^1.0.0-rc.5",
"electron-context-menu": "^3.3.0",
"electron-is-dev": "^1.2.0",
"electron-store": "^6.0.1",
"electron-updater": "^4.3.5",
"eslint-webpack-plugin": "^2.1.0",
"feather-icons": "^4.28.0",
"html-react-parser": "^0.14.0",
"i18next": "^19.8.3",
"lodash": "^4.17.20",
"lowdb": "^1.0.0",
"markdown-it": "^12.3.2",
"mathjs": "^8.0.1",
"moment": "^2.29.4",
"node-sass": "^7.0.0",
"noty": "^3.2.0-beta",
"parse-domain": "^3.0.3",
"prop-types": "^15.7.2",
"puppeteer": "^5.5.0",
"rc-input-number": "^6.1.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-i18next": "^11.7.3",
"react-images-upload": "^1.2.8",
"react-markdown": "^5.0.3",
"react-markdown-editor-lite": "^1.2.2",
"react-mousetrap": "^0.2.0",
"react-redux": "^7.2.2",
"react-scripts": "^3.4.4",
"react-star-rating-controlled-component": "^1.0.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"request": "^2.88.2",
"shortid": "^2.2.16"
},
"scripts": {
"start": "rescripts start",
"build": "rescripts build",
"test": "rescripts test",
"dev": "concurrently \"cross-env BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"release": "rescripts build && electron-builder -wml --publish always"
},
"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"
]
},
"devDependencies": {
"@rescripts/cli": "^0.0.14",
"@rescripts/rescript-env": "^0.0.12",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"electron": "^18.3.7",
"electron-builder": "^22.9.1",
"sass": "^1.53.0",
"typescript": "^4.0.5",
"wait-on": "^5.2.0"
},
"keywords": [
"recipe",
"recipes",
"recipe-manager",
"macos",
"windows",
"linux",
"react"
],
"bugs": {
"url": "https://github.com/fredserva/birdskitchen/issues"
},
"author": {
"name": "Frédéric Serva",
"url": "https://github.com/fredserva",
"email": "fred.serva@gmail.com"
},
"links": {
"project-page": "https://github.com/fredserva/birdskitchen",
"author-page": "https://github.com/fredserva",
"license": "https://github.com/fredserva/birdskitchen/blob/master/LICENSE",
"changelog": "https://github.com/fredserva/birdskitchen/blob/master/changelog.md",
"issues": "https://github.com/fredserva/birdskitchen/issues/new?assignees=&labels=&template=feature_request.md&title=",
"releases": "https://github.com/fredserva/birdskitchen/releases",
"sponsor": "https://www.paypal.com/paypalme/fredserva",
"mailto": "mailto:contact@tenbirds.online"
},
"build": {
"appId": "com.birdskitchen.app",
"productName": "Birds Kitchen",
"asar": false,
"directories": {
"output": "dist"
},
"files": [
"build/**/*"
],
"publish": {
"provider": "github",
"releaseType": "release"
},
"mac": {
"icon": "public/images/app.icns",
"category": "public.app-category.productivity",
"target": [
"zip"
]
},
"win": {
"icon": "public/images/app.ico",
"target": [
"nsis"
]
},
"linux": {
"category": "Utility",
"description": "recipe manager",
"packageCategory": "Utility",
"icon": "public/images/logo/birds-kitchen.png",
"target": [
"AppImage"
]
}
}
}