forked from graasp/graasp-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.73 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
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "graasp-player",
"version": "2.21.2",
"private": true,
"author": "Graasp",
"contributors": [
"Juan Carlos Farah",
"Kim Lan Phan Hoang",
"Basile Spaenlehauer",
"Alexandre Chau",
"Julien Torrent"
],
"type": "module",
"scripts": {
"dev": "vite",
"start": "yarn dev",
"start:test": "vite --mode test",
"build": "tsc && vite build",
"build:test": "vite build --mode test",
"preview": "vite preview",
"preview:test": "vite preview --mode test",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"check": "yarn prettier:check && yarn lint && yarn type-check",
"prettier:check": "prettier --check {src,cypress}/**/*.{js,ts,tsx}",
"prettier:write": "prettier --write {src,cypress}/**/*.{js,ts,tsx}",
"hooks:uninstall": "husky uninstall",
"hooks:install": "husky install",
"cypress:open": "env-cmd -f ./.env.test cypress open",
"cypress": "yarn test",
"test": "yarn build:test && concurrently -k -s first \"yarn preview:test\" \"yarn cypress:run\"",
"test:unit": "yarn vitest",
"cypress:run": "env-cmd -f ./.env.test cypress run --browser chrome"
},
"dependencies": {
"@emotion/cache": "11.13.5",
"@emotion/react": "11.13.5",
"@emotion/styled": "11.13.5",
"@graasp/chatbox": "3.3.0",
"@graasp/query-client": "5.5.0",
"@graasp/sdk": "5.3.1",
"@graasp/stylis-plugin-rtl": "2.2.0",
"@graasp/translations": "1.42.0",
"@graasp/ui": "https://github.com/lnco-epfl/graasp-ui",
"@mui/icons-material": "6.1.8",
"@mui/lab": "6.0.0-beta.16",
"@mui/material": "6.1.8",
"@sentry/react": "7.120.0",
"axios": "1.7.7",
"classnames": "2.5.1",
"date-fns": "4.1.0",
"i18next": "23.16.8",
"katex": "0.16.11",
"lodash.isarray": "4.0.0",
"lodash.truncate": "4.4.2",
"lucide-react": "0.460.0",
"react": "18.3.1",
"react-accessible-treeview": "2.10.0",
"react-dom": "18.3.1",
"react-fullscreen-crossbrowser": "1.1.3",
"react-ga4": "2.1.0",
"react-helmet": "6.1.0",
"react-i18next": "15.1.1",
"react-intersection-observer": "9.13.1",
"react-quill": "2.0.0",
"react-router": "6.28.0",
"react-router-dom": "6.28.0",
"react-toastify": "10.0.6",
"stylis": "4.3.4",
"uuid": "11.0.3"
},
"devDependencies": {
"@commitlint/config-conventional": "19.6.0",
"@cypress/code-coverage": "3.13.7",
"@eslint/compat": "1.2.3",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.15.0",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/katex": "^0.16.7",
"@types/lodash.isarray": "^4.0.9",
"@types/lodash.truncate": "^4.4.9",
"@types/node": "^22.9.1",
"@types/react": "18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-helmet": "^6.1.11",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"@vitejs/plugin-react": "^4.3.3",
"commitlint": "19.6.0",
"concurrently": "9.1.0",
"cypress": "13.16.0",
"cypress-iframe": "1.0.1",
"cypress-vite": "1.5.0",
"env-cmd": "10.1.0",
"eslint": "^9.15.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-cypress": "4.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"globals": "15.12.0",
"http-status-codes": "2.3.0",
"husky": "9.1.7",
"prettier": "3.3.3",
"rollup-plugin-visualizer": "5.12.0",
"typescript": "5.6.3",
"vite": "5.4.11",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-istanbul": "6.0.2",
"vitest": "2.1.5"
},
"packageManager": "yarn@4.5.2"
}