This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
86 lines (86 loc) · 3.1 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
{
"name": "@desterlib/frontend",
"version": "0.9.0",
"description": "Dester's frontend",
"license": "MIT",
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"electron:start": "concurrently -k \"cross-env BROWSER=none npm start\" \"wait-on http://localhost:35510 && cross-env NODE_ENV=development electronmon .\"",
"electron:mon": "cross-env NODE_ENV=development electronmon .",
"electron:build": "npm run build && rm -rf dist && electron-builder --config electron/electron-builder.json --win --x64",
"lint:check": "eslint src/**/*.{js,jsx,ts,tsx} electron/*.{js,jsx,ts,tsx}",
"lint:fix": "eslint --fix src/**/*.{js,jsx,ts,tsx} electron/*.{js,jsx,ts,tsx}",
"lint:format": "prettier --write src/**/*.{js,jsx,ts,tsx,css,md,json} electron/*.{js,jsx,ts,tsx,css,md,json} .eslintrc.json .prettierrc.json package.json tsconfig.json --config .prettierrc.json"
},
"dependencies": {
"@desterlib/dplayer": "^0.0.21",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.8.5",
"@mui/styled-engine": "^5.8.0",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"artplayer": "^4.5.2",
"buffer": "^6.0.3",
"html-react-parser": "^2.0.0",
"lodash": "^4.17.21",
"path-browserify": "^1.0.1",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-colorful": "^5.5.1",
"react-dom": "^18.2.0",
"react-fast-compare": "^3.2.0",
"react-router-dom": "^6.3.0",
"sweetalert2": "^11.4.19",
"swiper": "^8.2.4",
"typescript": "^4.7.4",
"use-resize-observer": "^9.0.2"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/lodash": "^4.14.182",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"concurrently": "^7.2.2",
"cross-env": "^7.0.3",
"electron": "^19.0.6",
"electron-builder": "^23.1.0",
"electronmon": "^2.0.2",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"prettier": "^2.7.1",
"react-app-rewired": "^2.2.1",
"wait-on": "^6.0.1"
},
"author": "Dester Team",
"contributors": [
{
"name": "Alken D",
"email": "[email protected]",
"url": "https://github.com/AlkenD"
},
{
"name": "Elias Benbourenane",
"email": "[email protected]",
"url": "https://elias.eu.org"
}
],
"main": "./electron/index.ts",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}