-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.32 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.32 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
{
"name": "workpaper",
"version": "0.2.0",
"description": "A wallpaper schedule",
"author": {
"name": "Jarvay",
"email": "jarvay@163.com"
},
"main": "dist-electron/main/index.js",
"license": "MIT",
"private": true,
"workspaces": [
"*",
"library/*"
],
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:7777/"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"preview": "vite preview",
"pree2e": "vite build --mode=test",
"e2e": "playwright test",
"create-migration": "ts-node scripts/create-migration.js",
"prettier": "prettier -c --write \"**/**.{js,jsx,tsx,ts,less,md,json}\"",
"prepare": "husky"
},
"dependencies": {
"electron-as-wallpaper": "1.0.3",
"electron-updater": "^6.1.1",
"react-fast-marquee": "^1.6.4",
"wallpaper": "^7.2.1"
},
"devDependencies": {
"@ant-design/icons": "^5.2.6",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@playwright/test": "^1.37.1",
"@smithy/md5-js": "^2.2.0",
"@types/lodash": "^4.17.0",
"@types/node-schedule": "^2.1.2",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"ahooks": "^3.7.8",
"antd": "^5.18.0",
"autoprefixer": "^10.4.16",
"axios": "^1.6.8",
"dayjs": "^1.11.10",
"electron": "^30.0.0",
"electron-builder": "^24.6.3",
"electron-devtools-installer": "^3.2.0",
"husky": "^9.0.11",
"i18next": "^23.6.0",
"less": "^4.2.0",
"less-loader": "^11.1.3",
"lodash": "^4.17.21",
"lowdb": "^6.1.1",
"mime": "^4.0.1",
"mitt": "^3.0.1",
"node-schedule": "^2.1.1",
"postcss": "^8.4.31",
"postcss-import": "^16.1.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.3.1",
"react-infinite-scroll-component": "^6.1.0",
"react-router-dom": "^6.18.0",
"rxjs": "^7.8.1",
"sharp": "^0.33.4",
"typescript": "^5.1.6",
"vite": "^5.2.7",
"vite-plugin-electron": "^0.13.0-beta.3",
"vite-plugin-electron-renderer": "^0.14.5",
"vite-plugin-esmodule": "^1.5.0"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"repository": {
"type": "git",
"url": "git@github.com:Jarvay/workpaper.git"
}
}