-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.21 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
{
"name": "kiku",
"private": true,
"main": "electron/main.js",
"version": "0.0.5",
"author": "Angus Wan",
"description": "Kiku",
"repository": "",
"license": "GPL-3.0-or-later",
"homepage": "./",
"scripts": {
"start": "electron-forge start",
"dev": "cross-env NODE_ENV=development vite --port=5201",
"build": "yarn lint && cross-env NODE_ENV=production vite build",
"build-all": "yarn lint && cross-env NODE_ENV=production vite build && electron-builder -wml",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives",
"postinstall": "cpy --flat ./node_modules/framework7-icons/fonts/*.* ./src/fonts/ && cpy --flat ./node_modules/material-icons/iconfont/*.* ./src/fonts/",
"i18n": "npx i18next-parser",
"electron-build": "cross-env NODE_ENV=production npx electron-builder -lw",
"prettier-write": "yarn prettier --write ."
},
"browserslist": [
"IOS >= 15",
"Safari >= 15",
"last 5 Chrome versions",
"last 5 Firefox versions"
],
"dependencies": {
"@reduxjs/toolkit": "^1.9.7",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.7",
"@types/react": "^18.2.29",
"@types/react-dom": "^18.2.14",
"axios": "^1.5.1",
"clsx": "^2.1.0",
"dom7": "^4.0.6",
"du": "^1.0.0",
"electron-serve": "^1.2.0",
"electron-squirrel-startup": "^1.0.0",
"framework7": "^8.3.2",
"framework7-icons": "^5.0.5",
"framework7-react": "^8.3.2",
"i18next": "^23.7.6",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-fs-backend": "^2.3.0",
"i18next-http-backend": "^2.4.1",
"localforage": "^1.10.0",
"material-icons": "^1.13.12",
"nanoid": "^5.0.2",
"papaparse": "^5.4.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.4.1",
"react-redux": "^8.1.3",
"react-router-dom": "^6.18.0",
"redux-persist": "^6.0.0",
"redux-persist-indexeddb-storage": "^1.0.4",
"skeleton-elements": "^4.0.1",
"striptags": "^3.2.0",
"swiper": "^10.3.1",
"typescript": "^5.2.2",
"vite-tsconfig-paths": "^4.2.1",
"wavesurfer.js": "7.4.1",
"youtubei.js": "^9.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.15.0",
"@vitejs/plugin-react": "^4.1.0",
"autoprefixer": "^10.4.16",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3",
"electron": "^27.0.1",
"electron-builder": "^24.9.1",
"electron-devtools-installer": "^3.2.0",
"electron-icon-builder": "^2.0.1",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"i18next-parser": "^8.9.0",
"postcss": "^8.4.31",
"postcss-preset-env": "^9.2.0",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.3",
"tree-kill": "^1.2.2",
"typescript-eslint": "^0.0.1-alpha.0",
"vite": "^4.5.0",
"vite-plugin-electron": "^0.15.5"
}
}