-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.35 KB
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
{
"name": "apitracker",
"version": "0.2.1",
"private": true,
"author": "Lawrence Karanja",
"description": "Save all your API Keys in one location locally. No more multiple registrations(Unless you want to) for the same site due to forgetting you already have an account. Just search your personal DB of API Keys you have created.",
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.16",
"@mui/icons-material": "^5.2.5",
"@mui/material": "^5.2.8",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"axios": "^0.24.0",
"babel-jest": "^26.6.0",
"cross-env": "^7.0.3",
"electron-is-dev": "^2.0.0",
"json-server": "^0.17.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-overlay": "^6.0.9",
"react-router-dom": "^6.2.1",
"react-scripts": "4.0.3",
"wait-on": "^6.0.0",
"web-vitals": "^1.1.2"
},
"resolutions": {
"react-error-overlay": "6.0.9"
},
"scripts": {
"start": "concurrently --kill-others \"react-scripts --openssl-legacy-provider start\" \"json-server -p 8080 ./src/Data/apis.json\" ",
"react-build": "react-scripts --openssl-legacy-provider build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron-dev": "concurrently \"BROWSER=none npm start\" \"wait-on http://localhost:3000 && electron .\"",
"electron-build": "electron-builder",
"release": "npm run react-build && electron-builder -mwl --publish=always",
"build": "npm run react-build && npm run electron-build",
"postinstall": "electron-builder install-app-deps",
"pack": "electron-builder -mwl"
},
"main": "public/electron.js",
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"concurrently": "^7.0.0",
"electron": "^16.0.8",
"electron-builder": "^24.4.0"
}
}