forked from visdesignlab/emma-study
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.17 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
92
93
94
95
{
"name": "revisit",
"private": true,
"version": "2.0.0",
"type": "module",
"scripts": {
"buildDocs": "yarn typedoc",
"serve": "vite --host=0.0.0.0 --port=8080",
"build": "tsc && vite build",
"lint": "eslint src",
"postinstall": "husky",
"generate-schema:StudyConfig": "ts-json-schema-generator --path src/parser/types.ts --out src/parser/StudyConfigSchema.json --type StudyConfig",
"generate-schema:GlobalConfig": "ts-json-schema-generator --path src/parser/types.ts --out src/parser/GlobalConfigSchema.json --type GlobalConfig",
"generate-schema:LibraryConfig": "ts-json-schema-generator --path src/parser/types.ts --out src/parser/LibraryConfigSchema.json --type LibraryConfig",
"generate-schemas": "yarn generate-schema:StudyConfig && yarn generate-schema:GlobalConfig && yarn generate-schema:LibraryConfig",
"test": "playwright test"
},
"lint-staged": {
"*.{tsx,jsx,ts,js}": "yarn lint"
},
"dependencies": {
"@mantine/core": "^7.10.1",
"@mantine/dates": "^7.10.1",
"@mantine/form": "^7.10.1",
"@mantine/hooks": "^7.10.1",
"@mantine/modals": "^7.10.1",
"@mantine/notifications": "^7.12.0",
"@quentinroy/latin-square": "^1.1.1",
"@reduxjs/toolkit": "^2.5.0",
"@tabler/icons-react": "^3.28.1",
"@trrack/core": "^1.3.0",
"@trrack/vis-react": "^1.5.0",
"@types/crypto-js": "^4.2.2",
"@types/hjson": "^2.4.6",
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.7",
"@types/seedrandom": "^3.0.8",
"ajv": "^8.17.1",
"arquero": "^5.4.0",
"crypto-js": "^4.2.0",
"d3": "^7.9.0",
"d3-hexbin": "^0.2.2",
"dayjs": "1.11.13",
"eslint-config-airbnb": "^19.0.4",
"firebase": "^11.2.0",
"hjson": "^3.2.2",
"localforage": "^1.10.0",
"lodash.debounce": "^4.0.8",
"lodash.merge": "^4.6.2",
"mathjs": "^13.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.3",
"react-redux": "^9.2.0",
"react-router": "^7.1.2",
"react-timer-hook": "^3.0.8",
"react-vega": "^7.6.0",
"rehype-raw": "^7.0.0",
"seedrandom": "^3.0.5",
"ts-json-schema-generator": "^2.3.0",
"typedoc": "^0.27.6",
"typedoc-plugin-frontmatter": "^1.1.2",
"typedoc-plugin-markdown": "^4.4.1",
"use-deep-compare-effect": "^1.8.1",
"uuid": "^11.0.5",
"vega": "^5.30.0",
"vega-lite": "^5.23.0",
"wavesurfer-react": "^3.0.4",
"wavesurfer.js": "^7.8.16"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@playwright/test": "^1.49.1",
"@types/d3": "^7.4.0",
"@types/d3-hexbin": "^0.2.5",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"eslint": "^9.18.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"typescript": "^5.7.3",
"vite": "^6.0.9"
}
}