forked from revisit-studies/study
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.59 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
{
"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 install",
"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": "VITE_STORAGE_ENGINE=localStorage playwright test"
},
"lint-staged": {
"*.{tsx,jsx,ts,js}": "yarn lint"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@firebase/app-check": "^0.8.0",
"@firebase/auth": "^1.5.0",
"@mantine/core": "^5.8.0",
"@mantine/form": "^6.0.7",
"@mantine/hooks": "^5.8.0",
"@quentinroy/latin-square": "^1.1.1",
"@reduxjs/toolkit": "^1.9.3",
"@swc/helpers": "^0.4.14",
"@tabler/icons-react": "^2.15.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",
"ajv": "^8.12.0",
"arquero": "^5.2.0",
"d3": "^7.8.2",
"eslint-config-airbnb": "^19.0.4",
"firebase": "^10.7.0",
"hjson": "^3.2.2",
"howler": "^2.2.4",
"localforage": "^1.10.0",
"lodash.debounce": "^4.0.8",
"lodash.merge": "^4.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.5",
"react-redux": "^8.0.5",
"react-router-dom": "^6.10.0",
"react-spring": "^9.7.3",
"react-voice-recorder-player": "^1.1.0",
"rehype-raw": "^7.0.0",
"ts-json-schema-generator": "^1.4.1",
"typedoc": "^0.25.4",
"typedoc-plugin-frontmatter": "^0.0.2",
"typedoc-plugin-markdown": "^3.17.1",
"use-deep-compare-effect": "^1.8.1",
"uuid": "^9.0.1",
"wavesurfer-react": "^2.2.3",
"wavesurfer.js": "^7.4.2"
},
"devDependencies": {
"@playwright/test": "^1.35.1",
"@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": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.54.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"typescript": "^5.3.2",
"vite": "^5.0.12"
}
}