-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
90 lines (90 loc) · 2.63 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
{
"name": "csv-plus",
"version": "0.9.12",
"description": "CSV+ is simplify cross-platform CSV tab editor.",
"author": "Masaki Enomoto <[email protected]>",
"license": "MIT",
"private": true,
"main": "background.js",
"homepage": "https://plus-one.tech/csv-plus",
"keywords": [
"csv",
"tsv",
"editor",
"tab",
"electron",
"cross-platform"
],
"scripts": {
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"dependencies": {
"@mdi/js": "^5.9.55",
"axios": "^0.21.1",
"chardet": "^1.3.0",
"compare-versions": "^3.6.0",
"csv": "^6.0.5",
"electron": "^13.1.4",
"electron-log": "^4.3.5",
"handsontable": "6.2.2",
"has-bom": "^0.1.0",
"i18next": "^20.3.3",
"iconv-lite": "^0.6.2",
"sanitize-html": "^2.4.0",
"ts-jest": "^27.1.4",
"vue": "^3",
"vue-i18n": "^9.0.0-beta.18",
"vuedraggable": "^4.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@faker-js/faker": "^6.0.0",
"@types/electron-devtools-installer": "^2.2.0",
"@types/iconv": "^2.1.16",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"@vue/cli-plugin-e2e-cypress": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-unit-jest": "^5.0.4",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-standard": "^6.1.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^2.0.0-0",
"@vue/vue3-jest": "^27.0.0-alpha.4",
"archiver": "^5.3.0",
"babel-jest": "^27.5.1",
"electron-builder": "^23.2",
"electron-devtools-installer": "^3.1.1",
"electron-notarize": "^1.0.0",
"eslint": "^7.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^7.0.0-0",
"jconv": "^0.1.5",
"pug": "^3.0.2",
"pug-plain-loader": "^1.1.0",
"regenerator-runtime": "^0.13.9",
"sass": "^1.34.0",
"sass-loader": "^10",
"spectron": "^15.0.0",
"typescript": "^4.6.3",
"vue-cli-plugin-electron-builder": "^2.0.0",
"vue-jest": "^3.0.7"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}