-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.61 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "req.io",
"author": "Anil",
"private": true,
"version": "0.1.0",
"scripts": {
"dev": "vite",
"build": "vite build && electron-builder",
"dist": "vite build && electron-builder --publish=never",
"preview": "vite preview",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"typecheck": "tsc",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:coverage:ui": "vitest run --coverage --reporter=verbose && open coverage/index.html",
"test:coverage:ci": "vitest run --coverage --reporter=verbose --reporter=json --outputFile=coverage/results.json",
"test:watch": "vitest --watch",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"prepare": "husky"
},
"dependencies": {
"axios": "^1.7.4",
"react": "^18.2.0",
"react-ace": "^10.1.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.11",
"@mui/material": "^5.14.11",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"@vitejs/plugin-react": "^5.0.3",
"@vitest/coverage-v8": "^0.34.6",
"electron": "^38.1.2",
"electron-builder": "26.0.12",
"electron-builder-squirrel-windows": "26.0.12",
"eslint": "^8.48.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"husky": "^9.1.7",
"jsdom": "^22.1.0",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"sass": "^1.92.1",
"typescript": "^5.2.2",
"vite": "^7.1.6",
"vite-plugin-electron": "^0.14.0",
"vite-plugin-electron-renderer": "^0.14.5",
"vite-plugin-svgr": "^4.1.0",
"vitest": "^0.34.6"
},
"main": "dist-electron/main.js",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,scss,md}": [
"prettier --write"
]
},
"build": {
"appId": "com.anil.reqio",
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"mac": {
"category": "public.app-category.developer-tools",
"target": [
"dmg",
"zip"
],
"icon": "assets/icon.png"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "assets/icon.png"
}
}
}