-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
91 lines (91 loc) · 3.76 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
91
{
"name": "jspsych-template",
"author": "mupsy",
"description": "jsPsych Experiment Template",
"private": true,
"version": "0.1.6",
"type": "commonjs",
"main": "src/electron-main.js",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "vue-tsc -b && vite build && tsc src/electron-main.ts",
"preview": "vite preview",
"pack": "npm run build && electron-builder --config",
"pack:win": "npm run build && electron-builder --win --config",
"pack:mac": "npm run build && electron-builder --mac --config",
"pack:linux": "npm run build && electron-builder --linux --config"
},
"dependencies": {
"@jspsych/extension-mouse-tracking": "^1.0.3",
"@jspsych/extension-record-video": "^1.0.2",
"@jspsych/extension-webgazer": "^1.0.3",
"@jspsych/plugin-animation": "^1.1.3",
"@jspsych/plugin-audio-button-response": "^1.1.3",
"@jspsych/plugin-audio-keyboard-response": "^1.1.3",
"@jspsych/plugin-audio-slider-response": "^1.1.3",
"@jspsych/plugin-browser-check": "^1.0.3",
"@jspsych/plugin-call-function": "^1.1.3",
"@jspsych/plugin-canvas-button-response": "^1.1.3",
"@jspsych/plugin-canvas-keyboard-response": "^1.1.3",
"@jspsych/plugin-canvas-slider-response": "^1.1.3",
"@jspsych/plugin-categorize-animation": "^1.1.3",
"@jspsych/plugin-categorize-html": "^1.1.3",
"@jspsych/plugin-categorize-image": "^1.1.3",
"@jspsych/plugin-cloze": "^1.2.1",
"@jspsych/plugin-external-html": "^1.1.3",
"@jspsych/plugin-free-sort": "^1.0.3",
"@jspsych/plugin-fullscreen": "^1.2.1",
"@jspsych/plugin-html-audio-response": "^1.0.3",
"@jspsych/plugin-html-button-response": "^1.1.3",
"@jspsych/plugin-html-keyboard-response": "^1.1.3",
"@jspsych/plugin-html-slider-response": "^1.1.3",
"@jspsych/plugin-html-video-response": "^1.0.2",
"@jspsych/plugin-iat-html": "^1.1.3",
"@jspsych/plugin-iat-image": "^1.1.3",
"@jspsych/plugin-image-button-response": "^1.1.3",
"@jspsych/plugin-image-keyboard-response": "^1.1.3",
"@jspsych/plugin-image-slider-response": "^1.1.3",
"@jspsych/plugin-initialize-camera": "^1.0.2",
"@jspsych/plugin-initialize-microphone": "^1.0.3",
"@jspsych/plugin-instructions": "^1.1.4",
"@jspsych/plugin-maxdiff": "^1.1.3",
"@jspsych/plugin-mirror-camera": "^1.0.2",
"@jspsych/plugin-preload": "^1.1.3",
"@jspsych/plugin-reconstruction": "^1.1.3",
"@jspsych/plugin-resize": "^1.0.3",
"@jspsych/plugin-same-different-html": "^1.1.3",
"@jspsych/plugin-same-different-image": "^1.1.3",
"@jspsych/plugin-serial-reaction-time": "^1.1.4",
"@jspsych/plugin-serial-reaction-time-mouse": "^1.1.3",
"@jspsych/plugin-sketchpad": "^1.0.4",
"@jspsych/plugin-survey": "^0.2.2",
"@jspsych/plugin-survey-html-form": "^1.0.3",
"@jspsych/plugin-survey-likert": "^1.1.3",
"@jspsych/plugin-survey-multi-choice": "^1.1.3",
"@jspsych/plugin-survey-multi-select": "^1.1.3",
"@jspsych/plugin-survey-text": "^1.1.3",
"@jspsych/plugin-video-button-response": "^1.1.3",
"@jspsych/plugin-video-keyboard-response": "^1.1.3",
"@jspsych/plugin-video-slider-response": "^1.1.3",
"@jspsych/plugin-virtual-chinrest": "^2.0.3",
"@jspsych/plugin-visual-search-circle": "^1.2.1",
"@jspsych/plugin-webgazer-calibrate": "^1.0.3",
"@jspsych/plugin-webgazer-init-camera": "^1.0.3",
"@jspsych/plugin-webgazer-validate": "^1.0.3",
"browser-tool": "^1.3.1",
"element-plus": "^2.8.4",
"jspsych": "^7.3.4",
"pinia": "^2.2.1",
"vue": "^3.4.35",
"vue-router": "^4.4.3"
},
"devDependencies": {
"@types/node": "^22.2.0",
"@vitejs/plugin-vue": "^5.1.2",
"electron": "^31.4.0",
"electron-builder": "^24.13.3",
"typescript": "^5.5.3",
"vite": "^5.4.0",
"vue-tsc": "^2.0.29"
}
}