-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.83 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
{
"name": "vinutes",
"description": "Daily videos - one second at a time",
"keywords": [
"video",
"diary"
],
"homepage": "http://vinutes.org",
"version": "0.3.5",
"private": true,
"author": {
"name": "Daniel Röhrig",
"email": "daniel@vinutes.org",
"url": "https://github.com/danielroehrig"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/danielroehrig/vinutes/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/danielroehrig/vinutes.git"
},
"scripts": {
"serve": "vue-cli-service electron:serve --remote-debugging-port=9223",
"debug-main": "vue-cli-service electron:serve --debug",
"build": "vue-cli-service electron:build",
"test:unit": "vue-cli-service test:unit unit",
"test:e2e": "vue-cli-service test:unit -ui=bdd tests/e2e --recursive",
"lint": "eslint 'src/**'",
"electron:generate-icons": "electron-icon-builder --input=./assets/icon.png --output=./public --flatten",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'",
"lint-fix": "eslint 'src/**' --fix",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"test:components": "env NODE_ENV=test vue-cli-service test:unit tests/components"
},
"main": "background.js",
"dependencies": {
"@mdi/font": "^6.4.95",
"better-sqlite3": "^7.4.4",
"buefy": "^0.9.11",
"bulma": "^0.9.3",
"calendar": "^0.1.1",
"caniuse-lite": "^1.0.30001279",
"dayjs": "^1.10.6",
"electron-log": "^4.4.1",
"fluent-ffmpeg": "^2.1.2",
"moment": "^2.29.4",
"sass": "^1.43.4",
"sass-loader": "^10.2.0",
"sharp": "^0.30.5",
"vue": "^2.6.14",
"vue-i18n": "^8.26.7",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
"@intlify/vue-i18n-loader": "^3.3.0",
"@testing-library/jest-dom": "^5.15.0",
"@vue/cli-plugin-e2e-cypress": "^4.5.15",
"@vue/cli-plugin-unit-jest": "~4.5.15",
"@vue/cli-service": "^4.5.15",
"@vue/test-utils": "^1.2.2",
"babel-core": "^7.0.0-bridge.0",
"electron": "^15.3.5",
"electron-devtools-installer": "^3.2.0",
"electron-icon-builder": "^2.0.1",
"eslint": "^8.2.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^8.0.3",
"jest": "^27.3.1",
"spectron": "^15.0.0",
"vue-cli-plugin-electron-builder": "^2.1.1",
"vue-cli-plugin-i18n": "~2.3.1",
"vue-jest": "^3.0.7",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.76.0"
}
}