-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from DouglasNeuroInformatics/dev
code review finished and addressed.
- Loading branch information
Showing
27 changed files
with
2,326 additions
and
1,051 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
lts/iron |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
Welcome to PictureNamingTask's documentation! | ||
=================================== | ||
|
||
**PictureNamingTask** | ||
This is task is a modernized version of a classic neuropsychological task known as a "picture naming task", where an individual is presented with a set of pictures of sheet of paper and asked to name each of them (The "Boston Naming Test"[1] being the most frequently used). The classic task is "fixed" in terms of the number of images and which images are shown. Classically, the number correct and the answer provided are recorded as a measurement. This expands on the classic version by allowing a user to add and remove stimuli as they deem necessary. Each stimulus also has a difficulty level associated with it. This allows for dynamic advancement and regression according to schedule set by the task administrator. | ||
|
||
The following pieces of data are recorded and downloaded in a .csv file at the end of session: | ||
|
||
- The stimulus | ||
- The correct response | ||
- The difficulty level | ||
- The language | ||
- Response time for stimulus screen | ||
- The correct/incorrect answer | ||
- The response/notes logged by experimenter | ||
|
||
|
||
Check out the :doc:`usage` section for further information, including | ||
how to :ref:`installation` the project. | ||
|
||
|
||
Contents | ||
-------- | ||
|
||
.. toctree:: | ||
|
||
home | ||
usage | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import { config } from "@douglasneuroinformatics/eslint-config"; | ||
|
||
export default config(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
{ | ||
"name": "picture-naming-task", | ||
"private": true, | ||
"version": "0.0.0", | ||
"version": "0.1.0", | ||
"author": "Cian Monnin", | ||
"description": "jsPysch implmentation of the Boston Naming Task with multilingual support", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "tsc && vite build", | ||
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", | ||
"lint": "tsc && eslint --fix src", | ||
"preview": "vite preview" | ||
}, | ||
"dependencies": { | ||
|
@@ -17,26 +18,22 @@ | |
"@jspsych/plugin-preload": "^2.0.0", | ||
"@jspsych/plugin-survey-html-form": "^2.0.0", | ||
"@jspsych/plugin-survey-text": "^2.0.0", | ||
"@types/dompurify": "^3.0.5", | ||
"@types/node": "^20.14.12", | ||
"dompurify": "^3.1.6", | ||
"i18next": "^23.12.2", | ||
"i18next-http-backend": "^2.5.2", | ||
"jsdom": "^24.1.1", | ||
"jspsych": "^8.0.1", | ||
"papaparse": "^5.4.1", | ||
"pure-rand": "^6.1.0", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1" | ||
"pure-rand": "^6.1.0" | ||
}, | ||
"devDependencies": { | ||
"@douglasneuroinformatics/eslint-config": "^4.3.0", | ||
"@douglasneuroinformatics/tsconfig": "^1.0.1", | ||
"@types/papaparse": "^5.3.14", | ||
"@types/react": "^18.3.3", | ||
"@types/react-dom": "^18.3.0", | ||
"@typescript-eslint/eslint-plugin": "^7.17.0", | ||
"@typescript-eslint/parser": "^7.17.0", | ||
"@vitejs/plugin-react": "^4.3.1", | ||
"eslint": "^8.57.0", | ||
"eslint-plugin-react-hooks": "^4.6.2", | ||
"eslint-plugin-react-refresh": "^0.4.9", | ||
"typescript": "^5.5.4", | ||
"typescript": "~5.5.4", | ||
"vite": "^5.3.4" | ||
}, | ||
"packageManager": "[email protected]" | ||
|
Oops, something went wrong.