-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
102 lines (102 loc) · 2.68 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
{
"name": "orbital_so",
"productName": "Orbital",
"version": "1.1.0",
"private": true,
"main": "src/background/main.js",
"homepage": "./",
"dependencies": {
"@craco/craco": "^6.2.0",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^1.2.0",
"@headlessui/react": "^1.4.1",
"@reduxjs/toolkit": "^1.6.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"dateformat": "^5.0.1",
"electron-is-dev": "^2.0.0",
"electron-store": "^8.0.1",
"fastest-levenshtein": "^1.0.12",
"fluent-ffmpeg": "^2.1.2",
"glob": "^7.2.0",
"hotkeys-js": "^3.8.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-highlight-words": "^0.17.0",
"react-infinite-scroll-component": "^6.1.0",
"react-redux": "^7.2.4",
"react-scripts": "4.0.3",
"typescript": "^4.1.2"
},
"scripts": {
"clean": "tsc --build --clean",
"tsc": "tsc ./src/background/*",
"compile": "npm run clean && npm run tsc",
"start": "craco start",
"build": "craco build",
"test": "craco test",
"dev": "npm run compile && concurrently -k \"BROWSER=none npm run start\" \"npm run electron\"",
"electron": "wait-on tcp:3000 && electron .",
"electron-pack": "electron-builder",
"preelectron-pack": "npm run compile && npm run build"
},
"build": {
"appId": "com.electron.example-app",
"mac": {
"icon": "./public/assets/app.icns",
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
]
},
"files": [
"**/*",
"./build/**/*",
"./public/**/*"
],
"extraMetadata": {
"main": "./src/background/main.js"
},
"directories": {
"buildResources": "./build/**/*"
},
"extends": null
},
"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": {
"@types/dateformat": "^3.0.1",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.33",
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"@types/react-highlight-words": "^0.16.3",
"@types/react-redux": "^7.1.18",
"autoprefixer": "^9.8.6",
"concurrently": "^6.2.1",
"electron": "^13.2.1",
"electron-builder": "^22.11.7",
"postcss": "^7.0.36",
"tailwind-scrollbar": "^1.3.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.7",
"wait-on": "^6.0.0"
}
}