-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·121 lines (121 loc) · 3.59 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
{
"name": "archives_manager",
"version": "2.0.0",
"description": "The file & metadata management app for archives.",
"main": "./dist/main.bundle.js",
"scripts": {
"start": "electron ./dist/main.bundle.js",
"verup": "npm version --no-git-tag-version 2.0.${BUILD_NUMBER}",
"dev": "rimraf dist && cross-env NODE_ENV=development NODE_OPTIONS=--openssl-legacy-provider webpack --watch --progress --colors",
"prod": "rimraf dist && cross-env NODE_ENV=development webpack --progress --colors",
"test": "jest",
"build:win": "electron-builder build --win --x64 --publish never",
"build:mac": "electron-builder build --mac --x64 -c.mac.identity=null",
"setup": "npm install --legacy-peer-deps"
},
"build": {
"appId": "com.dmf444.archivesmanager",
"productName": "Archives Manager",
"copyright": "Copyright ©2020 David Fernandes",
"directories": {
"app": "./dist/",
"output": "./out/"
},
"mac": {
"target": "pkg",
"icon": "./notes/archivesManagerLogo.icns"
},
"win": {
"target": "nsis",
"asar": true,
"icon": "./dist/public/archivesLogo.ico",
"artifactName": "archives_manager-setup-${version}.${ext}"
},
"nsis": {
"installerIcon": "./dist/public/archivesLogo.ico",
"uninstallerIcon": "./dist/public/archivesLogo.ico"
}
},
"author": "David Fernandes @dmf444",
"license": "GPLv3",
"dependencies": {
"@ant-design/icons": "^4.0.6",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"antd": "^4.13.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"ffmpeg-static": "4.2.4",
"discord.js": "12.2.0",
"sequelize": "5.21.6",
"mariadb": "2.3.1",
"lowdb": "1.0.0",
"pg-hstore": "^2.3.3",
"electron-log": "^4.1.2",
"electron-dl": "3.3.1",
"fs-jetpack": "^2.2.3",
"@indutny/yazl": "2.7.0",
"adm-zip": "^0.4.14",
"electron-context-menu": "^2.0.1",
"electron-updater": "4.3.1",
"node-fetch": "2.7.0",
"formdata-node": "^2.4.0",
"googleapis": "89.0.0",
"@google-cloud/local-auth": "^1.0.1",
"hex2dec": "1.1.2",
"mime": "3.0.0",
"wretch": "^2.9.0"
},
"devDependencies": {
"@types/react-router": "^4.4.5",
"@types/react-router-dom": "^4.3.5",
"@types/jest": "^27.0.3",
"acorn": "^6.4.0",
"ajv": "^6.10.2",
"copy-pkg-json-webpack-plugin": "0.0.38",
"copy-webpack-plugin": "^6.4.1",
"cross-env": "^5.2.1",
"css-loader": "^1.0.1",
"electron": "9.1.0",
"electron-builder": "^20.44.4",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.15",
"rimraf": "^2.7.1",
"source-map-loader": "^0.2.4",
"spectron": "^5.0.0",
"style-loader": "^0.23.1",
"ts-loader": "^5.4.5",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.1",
"tslint-microsoft-contrib": "^5.2.1",
"typescript": "^3.9.10",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"jest": "^27.3.1",
"ts-jest": "27.0.7",
"@types/node-fetch": "2.5.12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmf444/ArchiveManager"
},
"keywords": [
"boilerplate",
"Electron",
"React",
"Typescript",
"Webpack"
],
"bugs": {
"url": "https://github.com/dmf444/ArchiveManager/issues"
},
"homepage": "https://github.com/dmf444/ArchiveManager#readme"
}