-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.49 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
{
"appId": "cn.coding01.fanlycalendar",
"name": "FanlyCalendar",
"private": true,
"engines": {
"node": ">=v14.16",
"npm": ">=7.7"
},
"main": "packages/main/dist/index.cjs",
"scripts": {
"buildEnvTypes": "node scripts/buildEnvTypes.js",
"build": "node scripts/build.js",
"precompile": "cross-env MODE=production npm run build",
"compile": "electron-builder build --config electron-builder.config.js --dir --config.asar=false --mac",
"pretest": "cross-env MODE=test npm run build",
"test": "node tests/app.spec.js",
"watch": "node scripts/watch.js",
"lint": "eslint . --ext js,ts,vue",
"pretypecheck": "npm run buildEnvTypes",
"typecheck-main": "tsc --noEmit -p packages/main/tsconfig.json",
"typecheck-preload": "tsc --noEmit -p packages/preload/tsconfig.json",
"typecheck-renderer": "vue-tsc --noEmit -p packages/renderer/tsconfig.json",
"typecheck": "npm run typecheck-main && npm run typecheck-preload && npm run typecheck-renderer"
},
"browserslist": [
"Chrome 91"
],
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "npm run typecheck"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache --fix"
},
"devDependencies": {
"@types/electron-devtools-installer": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.23.0",
"@vicons/fa": "^0.10.0",
"@vicons/fluent": "^0.10.0",
"@vitejs/plugin-vue": "^1.2.2",
"cross-env": "^7.0.3",
"electron": "^13.1.7",
"electron-builder": "^22.11.7",
"electron-builder-notarize": "^1.2.0",
"electron-devtools-installer": "^3.2.0",
"eslint": "^7.25.0",
"eslint-plugin-vue": "^7.9.0",
"lint-staged": "^10.5.4",
"naive-ui": "^2.14.0",
"simple-git-hooks": "^2.4.1",
"spectron": "^14.0.0",
"typescript": "^4.3.5",
"vfonts": "^0.1.0",
"vite": "^2.4.3",
"vue-tsc": "^0.2.2"
},
"dependencies": {
"@fullcalendar/core": "^5.8.0",
"@fullcalendar/daygrid": "^5.8.0",
"@fullcalendar/interaction": "^5.8.0",
"@fullcalendar/timegrid": "^5.8.0",
"@fullcalendar/vue3": "^5.8.0",
"@vueuse/core": "^5.1.4",
"axios": "^0.21.1",
"axios-cache-plugin": "^0.1.0",
"date-fns": "^2.22.1",
"electron-updater": "^4.3.8",
"esbuild": "^0.12.15",
"lunar-typescript": "^1.2.1",
"moment": "^2.29.1",
"sass": "^1.32.12",
"vue": "^3.1.5",
"vue-router": "^4.0.6",
"vuex": "^4.0.0",
"vuex-persistedstate": "^4.0.0-beta.3"
}
}