-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
109 lines (109 loc) · 3.11 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
{
"name": "flawesome",
"version": "0.2.3",
"private": false,
"license": "GNU General Public License v3.0",
"author": {
"name": "Ashish Bharadwaj J",
"email": "[email protected]"
},
"main": "public/electron.js",
"homepage": "./",
"icon": "public/icon.png",
"description": "Flawesome is a modern productivity tool that will help you organise your day-today work and thoughts.",
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"quill": "1.3.7",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "^3.4.0",
"styled-components": "^5.0.1"
},
"scripts": {
"start": "PORT=4041 rescripts start",
"build": "rescripts build",
"test": "react-scripts test",
"electron-start": "set ELECTRON_START_URL=http://localhost:4041 && set IS_DEV=true && electron .",
"electron-start-mac": "export ELECTRON_START_URL=http://localhost:4041 && export IS_DEV=true && electron .",
"electron-start-linux": "export ELECTRON_START_URL=http://localhost:4041 && export IS_DEV=true && electron .",
"pre-package": "yarn build",
"package": "electron-builder build --win --publish never",
"package-linux": "electron-builder build --linux --publish never",
"package-publish": "electron-builder build --win --mac --linux --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": {
"@blueprintjs/core": "^3.25.0",
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/react-fontawesome": "^0.1.9",
"@reach/accordion": "^0.10.0",
"@rescripts/cli": "^0.0.14",
"@rescripts/rescript-env": "^0.0.12",
"draft-js": "^0.11.4",
"electron": "^9.4.0",
"electron-builder": "^22.7.0",
"flatpickr": "^4.6.3",
"lodash-es": "^4.17.15",
"node-sass": "^4.13.1",
"quill-image-drop-module": "https://github.com/ashishBharadwaj/quill-image-drop-module",
"react-quill": "^1.3.5"
},
"pre-push": [],
"build": {
"appId": "com.flawesome.app",
"productName": "Flawesome",
"copyright": "Copyright © 2020 Ashish Bharadwaj J",
"files": [
"build/**/*",
"node_modules/**/*",
"build/icon.*"
],
"publish": {
"provider": "github",
"repo": "flawesome",
"owner": "ashishbharadwaj",
"private": false
},
"win": {
"target": "NSIS",
"icon": "./build/icon.png"
},
"mac": {
"category": "public.app-category.productivity",
"icon": "./build/icon.icns"
},
"linux": {
"icon": "./build/icon.icns",
"category": "Productivity",
"packageCategory": "Productivity",
"target": [
{
"target": "deb"
},
{
"target": "AppImage"
}
]
}
},
"rescripts": [
"env"
]
}