-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.42 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
{
"name": "qualtrics-response-exporter-ui",
"version": "1.0.0",
"description": "Web-based desktop application to export Qualtrics all survey responses",
"repository": {
"type": "git",
"url": "git+https://github.com/deddyss/qualtrics-response-exporter-ui.git"
},
"author": "deddy.setyawan.susanto@gmail.com",
"license": "MIT",
"keywords": [
"typescript",
"vue3",
"tailwindcss",
"electron"
],
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"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"
},
"main": "background.js",
"dependencies": {
"@headlessui/vue": "^1.4.1",
"@heroicons/vue": "^1.0.4",
"@tailwindcss/forms": "^0.3.4",
"@vueuse/components": "^6.7.4",
"@vueuse/core": "^6.7.4",
"async-lock": "^1.3.0",
"axios": "^0.23.0",
"core-js": "^3.18.3",
"crypto-js": "^4.1.1",
"denque": "^2.0.1",
"fuse.js": "^6.4.6",
"get-port": "^5.1.1",
"limiter": "^2.1.0",
"progress-stream": "^2.0.0",
"systeminformation": "^5.9.9",
"vue": "^3.2.20",
"vue-router": "^4.0.11",
"vuex": "^4.0.2",
"vuex-persistedstate": "^4.1.0"
},
"devDependencies": {
"@types/async-lock": "^1.1.3",
"@types/crypto-js": "^4.0.2",
"@types/electron-devtools-installer": "^2.2.0",
"@types/jest": "^27.0.2",
"@types/progress-stream": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vue/cli-plugin-babel": "~4.5.13",
"@vue/cli-plugin-eslint": "~4.5.13",
"@vue/cli-plugin-router": "~4.5.13",
"@vue/cli-plugin-typescript": "~4.5.13",
"@vue/cli-plugin-unit-jest": "~4.5.13",
"@vue/cli-plugin-vuex": "~4.5.13",
"@vue/cli-service": "~4.5.13",
"@vue/compiler-sfc": "^3.2.20",
"@vue/eslint-config-airbnb": "^5.3.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-0",
"autoprefixer": "^9.8.8",
"electron": "^15.1.2",
"electron-devtools-installer": "^3.2.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-vue": "^7.19.1",
"postcss": "^7.0.39",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.16",
"ts-jest": "^24.3.0",
"typescript": "^4.4.4",
"vue-cli-plugin-electron-builder": "~2.1.1",
"vue-jest": "^5.0.0-0"
}
}