forked from revisit-studies/study
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.33 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
96
97
98
99
100
101
102
103
104
{
"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",
"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",
"@quentinroy/latin-square": "^1.1.1",
"@reduxjs/toolkit": "^2.2.5",
"@swc/helpers": "^0.4.14",
"@tabler/icons": "1.119.0",
"@tabler/icons-react": "^3.5.0",
"@tiptap/core": "^2.3.0",
"@tiptap/extension-highlight": "^2.3.0",
"@tiptap/extension-link": "^2.3.0",
"@tiptap/extension-paragraph": "^2.3.0",
"@tiptap/extension-subscript": "^2.3.0",
"@tiptap/extension-superscript": "^2.3.0",
"@tiptap/extension-text-align": "^2.3.0",
"@tiptap/pm": "^2.3.0",
"@tiptap/react": "^2.3.0",
"@tiptap/starter-kit": "^2.3.0",
"@trrack/core": "^1.3.0",
"@trrack/vis-react": "^1.5.0",
"@types/hjson": "^2.4.3",
"@types/howler": "^2.2.10",
"@types/lodash": "^4.14.199",
"@types/redux-state-sync": "^3.1.10",
"ajv": "^8.16.0",
"arquero": "^5.4.0",
"clsx": "^2.1.1",
"crunker": "^2.4.0",
"d3": "^7.9.0",
"dayjs": "^1.11.11",
"eslint-config-airbnb": "^19.0.4",
"firebase": "^10.12.2",
"hjson": "^3.2.2",
"howler": "^2.2.4",
"localforage": "^1.10.0",
"lodash.debounce": "^4.0.8",
"lodash.merge": "^4.6.2",
"mantine-react-table": "^2.0.0-beta.5",
"mantine-v7": "npm:@mantine/hooks",
"million": "^3.0.6",
"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-spring": "^9.7.3",
"react-vega": "^7.6.0",
"react-voice-recorder-player": "^1.1.0",
"redux-state-sync": "^3.1.4",
"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": "2.2.3",
"wavesurfer.js": "7.4.2"
},
"devDependencies": {
"@playwright/test": "^1.44.0",
"@types/d3": "^7.4.0",
"@types/react": "^18.2.25",
"@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.0",
"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.2.13"
}
}