-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 2.13 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
{
"name": "casterr",
"version": "2.0.0",
"private": true,
"description": "Easy screen recording and sharing",
"author": {
"name": "sbondCo",
"url": "https://sbond.co"
},
"repository": {
"type": "git",
"url": "https://github.com/sbondCo/Casterr.git"
},
"main": "./entry/out/background.js",
"scripts": {
"serve": "npm run build:entry-scripts && node ./entry/out/serve.js",
"build:entry-scripts": "tsc --project tsconfig.entry.json",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"prettier:formatall": "prettier --write '**/*.{ts,js,tsx,json}'",
"prettier:check": "prettier --check '**/*.{ts,js,tsx,json}'",
"lint": "eslint .",
"compile": "npm run build:entry-scripts && vite build",
"build": "npm run compile && electron-builder build --config builder.config.js"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.1",
"axios": "^1.6.2",
"electron-updater": "^6.1.7",
"nouislider": "^15.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.2",
"react-router-dom": "^6.21.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "5.53.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.13",
"cross-env": "^7.0.3",
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"electron-devtools-installer": "^3.2.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"postcss": "^8.4.31",
"prettier": "^2.8.0",
"sass": "^1.69.5",
"tailwindcss": "^3.3.5",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-commonjs-externals": "^0.1.4"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"license": "GPL-3.0"
}