-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 3.57 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
{
"name": "jspsych-template",
"version": "0.0.1",
"description": "Template serverless project for running online experiments using jsPsych, Firestore and Prolific",
"homepage": "https://github.com/daeh/jspsych-template#readme",
"author": "Dae Houlihan <[email protected]> (https://daeh.info)",
"license": "ISC",
"scripts": {
"deploy": "firebase deploy --only hosting",
"deploy-rules": "firebase deploy --only firestore:rules",
"update-deps": "yarn set version stable && yarn upgrade-interactive",
"release": "node scripts/releaseScript.mjs $PWD",
"retrieve": "zsh scripts/retrieve.zsh $PWD",
"dev": "vite --config vite.config.mts hosting",
"preview": "vite preview --config vite.config.mts hosting",
"build": "vite build --config vite.config.mts hosting",
"build:dev": "NODE_ENV=development vite build --config vite.config.mts --mode development hosting",
"build:prod": "NODE_ENV=production && ESLINT_USE_FLAT_CONFIG=true && prettier --config prettier.config.mjs --write . && eslint --config eslint.config.mjs --fix . && tsc --project tsconfig.prod.json --noEmit && vite build --config vite.config.mts --mode production hosting",
"lint": "ESLINT_USE_FLAT_CONFIG=true && prettier --config prettier.config.mjs --write . && eslint --config eslint.config.mjs --fix . && tsc --project tsconfig.json --noEmit",
"lint:dev": "NODE_ENV=development && ESLINT_USE_FLAT_CONFIG=true && prettier --config prettier.config.mjs --write . && eslint --config eslint.config.mjs --fix . && tsc --project tsconfig.dev.json --noEmit",
"lint:prod": "NODE_ENV=production && ESLINT_USE_FLAT_CONFIG=true && prettier --config prettier.config.mjs --write . && eslint --config eslint.config.mjs --fix . && tsc --project tsconfig.prod.json --noEmit",
"lint:dry": "ESLINT_USE_FLAT_CONFIG=true && prettier --config prettier.config.mjs --check . ; eslint --config eslint.config.mjs . && tsc --project tsconfig.json --noEmit",
"postinstall": "node scripts/postinstall.mjs"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/daeh/jspsych-template.git"
},
"bugs": {
"url": "https://github.com/daeh/jspsych-template/issues"
},
"templateVersion": "0.1.6",
"source": "./hosting",
"directories": {
"serve": "hosting/dist"
},
"browserslist": [
"defaults"
],
"dependencies": {
"@jspsych/plugin-html-keyboard-response": "^2.0.0",
"@jspsych/plugin-image-keyboard-response": "^2.0.0",
"@jspsych/plugin-preload": "^2.0.0",
"firebase": "^11.0.2",
"jspsych": "^8.1.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@stylistic/eslint-plugin": "^2.12.0",
"@types/eslint": "^9.6.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint-plugin-security": "^3.0.0",
"@types/node": "^22.10.1",
"autoprefixer": "^10.4.20",
"browserslist": "^4.24.2",
"browserslist-to-esbuild": "^2.1.1",
"child_process": "^1.0.2",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-unicorn": "^56.0.1",
"firebase-tools": "^13.28.0",
"globals": "^15.13.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"readline-sync": "^1.4.10",
"shelljs": "^0.8.5",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"vite": "^6.0.3",
"vite-plugin-html": "^3.2.2"
},
"packageManager": "[email protected]"
}