-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.51 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.51 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
{
"name": "psyflow-web",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./src/index.ts",
"module": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"description": "A psyflow-like web runtime and authoring package built on top of jsPsych.",
"scripts": {
"fetch:tasks": "node ./scripts/fetch-html-task-repos.mjs",
"generate:tasks": "node ./scripts/generate-task-manifest.mjs",
"generate:voice": "python ./scripts/generate-voice-assets.py",
"dev": "npm run generate:tasks && vite",
"dev:ax-cpt": "npm run generate:tasks && vite --open '/?task=H000001-ax-cpt'",
"dev:mid": "npm run generate:tasks && vite --open '/?task=H000006-mid'",
"build": "npm run build:site",
"build:site": "npm run generate:tasks && vite build",
"build:pages": "npm run fetch:tasks && npm run generate:tasks && vite build --mode pages",
"build:lib": "npm run generate:tasks && vite build --mode lib",
"preview": "vite preview",
"typecheck": "npm run generate:tasks && tsc --noEmit",
"test": "npm run generate:tasks && vitest run",
"test:watch": "npm run generate:tasks && vitest",
"test:e2e": "npm run generate:tasks && playwright test"
},
"dependencies": {
"@jspsych/plugin-call-function": "2.1.0",
"jspsych": "8.2.3",
"yaml": "2.8.2"
},
"devDependencies": {
"@playwright/test": "1.58.2",
"@types/node": "24.3.0",
"jsdom": "27.0.0",
"typescript": "5.9.2",
"vite": "7.3.1",
"vitest": "4.0.18"
}
}