-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.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": "easy-iphone-order",
"productName": "EasyiPhoneOrder",
"version": "1.0.0",
"description": "My Electron application description",
"main": ".webpack/main",
"scripts": {
"start": "killall Electron; killall Electron; npm run build:orderServicesInjects && electron-forge start; killall Electron && killall Electron;",
"package": "electron-forge package",
"build:orderServicesInjects": "webpack --config webpack.orderServicesInjects.config.js",
"make": "electron-forge make",
"make:macx64": "electron-forge make --arch=x64 --platform=darwin",
"make:windows": "electron-forge make --arch=x64 --platform=win32",
"make:universal": "electron-forge make --arch=universal --platform=darwin",
"make:macpackage": "electron-builder build --mac --arm64 --x64",
"publish": "electron-forge publish",
"lint": "eslint --ext .ts,.tsx .",
"prettierformat": "prettier --write",
"prettierall": "prettier --write .",
"lint-staged": "lint-staged"
},
"precommit": "lint-staged",
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"npm run prettierformat",
"git add ."
]
},
"devDependencies": {
"@electron-forge/cli": "^7.4.0",
"@electron-forge/maker-deb": "^7.4.0",
"@electron-forge/maker-dmg": "7.4.0",
"@electron-forge/maker-rpm": "^7.4.0",
"@electron-forge/maker-squirrel": "^7.4.0",
"@electron-forge/maker-zip": "^7.4.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.4.0",
"@electron-forge/plugin-fuses": "^7.4.0",
"@electron-forge/plugin-webpack": "^7.4.0",
"@electron/fuses": "^1.8.0",
"@electron/universal": "2.0.1",
"@types/node": "20.16.5",
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/webpack-asset-relocator-loader": "1.7.3",
"all": "0.0.0",
"copy-webpack-plugin": "12.0.2",
"css-loader": "^6.11.0",
"electron": "32.0.2",
"electron-builder": "25.0.5",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.30.0",
"fork-ts-checker-webpack-plugin": "^7.3.0",
"fs": "0.0.1-security",
"lint-staged": "15.2.10",
"node-loader": "^2.0.0",
"node-polyfill-webpack-plugin": "4.0.0",
"npm": "10.8.3",
"os-browserify": "0.3.0",
"path-browserify": "1.0.1",
"postcss-loader": "8.1.1",
"pre-commit": "1.2.2",
"prettier": "3.3.3",
"run": "1.5.0",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "5.6.2",
"util": "0.12.5",
"webpack-cli": "5.1.4",
"webpack-node-externals": "3.0.0"
},
"keywords": [],
"author": {
"name": "loo-y",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@radix-ui/react-select": "2.1.1",
"@types/lodash": "4.17.5",
"assert": "2.1.0",
"autoprefixer": "10.4.20",
"browserify-fs": "1.0.0",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"electron-squirrel-startup": "^1.0.1",
"electron-store": "10.0.0",
"lodash": "4.17.21",
"lucide-react": "0.441.0",
"postcss": "8.4.45",
"puppeteer": "23.3.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"sound-play": "1.1.0",
"tailwind-merge": "2.5.2",
"tailwindcss": "3.4.10",
"tailwindcss-animate": "1.0.7",
"zustand": "4.5.5"
}
}