-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.89 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
{
"name": "meetscheduler",
"description": "Seja lembrado de seus compromissos no Google Meet, com o MeetScheduler.",
"version": "1.7.0",
"author": "Gepetojj",
"homepage": "./",
"main": "build/main.js",
"scripts": {
"start": "SET BROWSER=none && react-scripts start",
"start:electron": "ts-node --skip-project \"electron/devElectron.ts\"",
"build": "react-scripts build",
"build:electron": "tsc --project electron/tsconfig.json",
"watch:electron": "tsc --watch --project electron/tsconfig.json",
"dev": "concurrently \"yarn watch:electron\" \"yarn start:electron\"",
"dist": "yarn build && yarn build:electron && electron-builder build -w --publish always",
"format": "prettier --write .",
"lint": "eslint ."
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"dayjs": "^1.10.6",
"dotenv": "^10.0.0",
"electron-log": "^4.4.1",
"electron-updater": "^4.3.9",
"notistack": "^1.0.10",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"reactjs-popup": "^2.0.5",
"styled-components": "^5.3.3",
"uniqid": "^5.3.0",
"v8-compile-cache": "^2.3.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.1.0",
"@types/node": "^16.6.1",
"@types/react": "^17.0.34",
"@types/react-beautiful-dnd": "^13.1.1",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.1.8",
"@types/styled-components": "^5.1.15",
"@types/uniqid": "^5.3.1",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"babel-eslint": "^10.1.0",
"concurrently": "^6.2.1",
"electron": "^13.2.0",
"electron-builder": "^22.11.7",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"nodemon": "^2.0.12",
"prettier": "^2.4.1",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"build": {
"appId": "com.gepetojj.meetscheduler",
"productName": "MeetScheduler",
"copyright": "Copyright © 2021 ${author}",
"extends": null,
"publish": [
{
"provider": "github",
"owner": "gepetojj",
"repo": "meetscheduler",
"releaseType": "release"
}
],
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "public"
},
"nsis": {
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "MeetScheduler",
"artifactName": "${productName}-${version}.${ext}",
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico"
}
}
}