-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
85 lines (85 loc) · 2.89 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
{
"name": "ui-components",
"private": true,
"version": "0.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": {
"@firebase/app-check": "^0.8.0",
"@firebase/auth": "^1.5.0",
"@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.2.5",
"@tabler/icons-react": "^3.5.0",
"@trrack/core": "^1.3.0",
"@trrack/vis-react": "^1.5.0",
"@types/hjson": "^2.4.3",
"@types/lodash": "^4.14.199",
"@types/node": "^22.7.6",
"ajv": "^8.16.0",
"arquero": "^5.4.0",
"d3": "^7.9.0",
"dayjs": "1.11.11",
"eslint-config-airbnb": "^19.0.4",
"firebase": "^10.12.2",
"hjson": "^3.2.2",
"localforage": "^1.10.0",
"lodash.debounce": "^4.0.8",
"lodash.merge": "^4.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.0",
"react-redux": "^9.1.2",
"react-router-dom": "^6.23.1",
"react-vega": "^7.6.0",
"rehype-raw": "^7.0.0",
"ts-json-schema-generator": "^2.3.0",
"typedoc": "^0.25.13",
"typedoc-plugin-frontmatter": "^1.0.0",
"typedoc-plugin-markdown": "^4.0.3",
"use-deep-compare-effect": "^1.8.1",
"uuid": "^10.0.0",
"vega": "^5.28.0",
"vega-lite": "^5.17.0",
"wavesurfer-react": "^3.0.4",
"wavesurfer.js": "^7.8.8"
},
"devDependencies": {
"@playwright/test": "^1.44.0",
"@types/d3": "^7.4.0",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@vitejs/plugin-react-swc": "^3.7.1",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"typescript": "^5.4.5",
"vite": "^5.4.6"
}
}