-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
152 lines (152 loc) · 4.79 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
147
148
149
150
151
152
{
"name": "taskunifier-app",
"description": "TaskUnifier - Task Management Application",
"author": "BL-IT",
"version": "1.3.2",
"private": true,
"main": "public/electron.js",
"homepage": "./",
"scripts": {
"react:start": "craco --max_old_space_size=4096 start",
"electron:start": "electron .",
"start": "REACT_APP_GIT_COMMIT_HASH=$(git rev-parse --short HEAD) craco --max_old_space_size=4096 start",
"build": "REACT_APP_GIT_COMMIT_HASH=$(git rev-parse --short HEAD) craco --max_old_space_size=4096 build",
"build:amplify": "REACT_APP_GIT_COMMIT_HASH=$(git rev-parse --short HEAD) craco --max_old_space_size=4096 build",
"build:github": "craco --max_old_space_size=4096 build",
"lint": "eslint public src",
"test": "craco test",
"pack": "electron-builder --dir",
"dist": "electron-builder --x64 --mac --win --linux --c.extraMetadata.main=build/electron.js -p never",
"postinstall": "husky install"
},
"dependencies": {
"@aws-amplify/datastore": "^3.7.9",
"@craco/craco": "^6.4.3",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"antd": "^4.19.4",
"aws-amplify": "^4.3.17",
"axios": "^0.26.1",
"craco-antd": "^1.19.0",
"electron-is-dev": "^2.0.0",
"electron-log": "^4.4.6",
"electron-updater": "^4.6.5",
"fs-extra": "^10.0.1",
"googleapis": "^99.0.0",
"https-proxy-agent": "^5.0.0",
"inputmask-core": "^2.2.0",
"jspdf": "^2.5.1",
"jspdf-autotable": "^3.5.23",
"jszip": "^3.7.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"mousetrap": "^1.6.5",
"qs": "^6.10.3",
"react": "^17.0.2",
"react-big-calendar": "^0.40.0",
"react-color": "^2.19.3",
"react-dnd": "^15.1.1",
"react-dnd-html5-backend": "^15.1.2",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.4",
"react-joyride": "^2.4.0",
"react-redux": "^7.2.6",
"react-responsive": "^8.2.0",
"react-rte": "^0.16.5",
"react-scripts": "4.0.3",
"react-split-pane": "^0.1.92",
"react-stripe-elements": "^6.1.2",
"react-virtualized": "^9.22.3",
"reduce-reducers": "^1.0.4",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1",
"redux-undo": "^1.0.1",
"reselect": "^4.1.5",
"rrule": "^2.6.9",
"uuid": "^8.3.2"
},
"devDependencies": {
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.5.1",
"electron": "^17.2.0",
"electron-builder": "^23.6.0",
"electron-devtools-installer": "^3.2.0",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"react-test-renderer": "^17.0.2",
"typescript": "^4.6.3",
"worker-loader": "^3.0.8"
},
"build": {
"appId": "com.bl-it.taskunifier",
"compression": "normal",
"productName": "TaskUnifier",
"directories": {
"buildResources": "build",
"output": "dist"
},
"protocols": [
{
"name": "TaskUnifier",
"role": "Viewer",
"schemes": [
"tu",
"taskunifier"
]
}
],
"mac": {
"icon": "assets/icon.icns",
"type": "distribution",
"target": [
"dmg",
"zip"
],
"publish": {
"provider": "github"
},
"category": "public.app-category.productivity"
},
"win": {
"icon": "assets/icon.ico",
"target": [
"portable",
"nsis"
],
"publish": {
"provider": "github"
},
"publisherName": "BL-IT"
},
"linux": {
"icon": "assets/icon.png",
"target": [
"tar.gz",
"snap",
"AppImage"
],
"publish": {
"provider": "github"
},
"description": "TaskUnifier - Task Management Application",
"category": "Office;ProjectManagement"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}