-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·41 lines (41 loc) · 1.19 KB
/
package.json
File metadata and controls
executable file
·41 lines (41 loc) · 1.19 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
{
"name": "vedi-survey",
"version": "0.0.0",
"scripts": {
"build": "vite build",
"start": "vite",
"preview": "vite preview",
"dev:server": "nodemon src/server.ts",
"start:server": "vite build && ts-node src/server.ts",
"pm2:server": "vite build && tsc && NODE_ENV=production pm2 start dist/server.js"
},
"dependencies": {
"@jspsych-contrib/plugin-pipe": "^0.4.0",
"@jspsych/plugin-external-html": "^2.0.0",
"@jspsych/plugin-fullscreen": "^1.1.2",
"@jspsych/plugin-html-button-response": "^2.0.0",
"@jspsych/plugin-html-keyboard-response": "^1.1.2",
"@jspsych/plugin-preload": "^1.1.2",
"@jspsych/plugin-survey": "^2.0.0",
"@types/ws": "^8.5.12",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"jspsych": "^8.0.2",
"mongodb": "^6.9.0",
"style-loader": "^4.0.0",
"ts-node": "^10.9.2",
"vite": "^5.4.7",
"vite-plugin-html": "^3.2.2",
"ws": "^8.18.0"
},
"browserslist": ">0.25%, not dead",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.5.5",
"nodemon": "^3.1.6",
"ts-loader": "^9.5.1",
"typescript": "^5.6.2"
}
}