forked from graasp/graasp-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.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
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
118
119
{
"name": "graasp-auth",
"version": "2.7.6",
"private": true,
"author": "Graasp",
"contributors": [
"Kim Lan Phan Hoang",
"Basile Spaenlehauer",
"Alexandre Chau"
],
"type": "module",
"dependencies": {
"@emotion/cache": "11.13.1",
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@graasp/query-client": "5.2.0",
"@graasp/sdk": "4.33.2",
"@graasp/stylis-plugin-rtl": "2.2.0",
"@graasp/translations": "1.40.0",
"@graasp/ui": "https://github.com/lnco-epfl/graasp-ui",
"@mui/icons-material": "6.1.6",
"@mui/lab": "6.0.0-beta.13",
"@mui/material": "6.1.6",
"@sentry/react": "7.119.2",
"date-fns": "4.1.0",
"http-status-codes": "2.3.0",
"i18next": "23.16.4",
"jose": "5.9.6",
"jwt-decode": "4.0.0",
"lucide-react": "0.454.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-ga4": "2.1.0",
"react-hook-form": "7.53.1",
"react-i18next": "15.1.0",
"react-router": "6.27.0",
"react-router-dom": "6.27.0",
"react-toastify": "10.0.6",
"stylis": "4.3.4",
"stylis-plugin-rtl": "2.1.1",
"validator": "13.12.0"
},
"scripts": {
"dev": "vite",
"start": "vite",
"start:test": "vite --mode test",
"build": "vite build",
"build:dev": "vite build --mode development",
"build:test": "vite build --mode test",
"preview": "vite preview",
"preview:dev": "vite preview --mode development",
"preview:test": "vite preview --mode test",
"lint": "eslint .",
"pre-commit": "yarn prettier:check && yarn lint",
"prettier:check": "prettier --check {src,cypress}/**/*.{js,ts,tsx}",
"prettier:write": "prettier --write {src,cypress}/**/*.{js,ts,tsx}",
"type-check": "tsc --noEmit",
"check": "yarn prettier:check && yarn lint && yarn type-check",
"hooks:install": "husky",
"cypress:open": "env-cmd -f ./.env.test cypress open",
"cypress": "yarn build:test && concurrently -k -s first \"yarn preview:test\" \"yarn cypress:run\"",
"test": "yarn cypress",
"cypress:run": "env-cmd -f ./.env.test cypress run --headless --browser chrome",
"postinstall": "husky"
},
"eslintConfig": {
"extends": "react-app"
},
"engines": {
"node": ">=20"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@cypress/code-coverage": "3.13.5",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/node": "20.17.6",
"@types/react": "^18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-router-dom": "5.3.3",
"@types/validator": "13.12.2",
"@typescript-eslint/eslint-plugin": "8.12.2",
"@typescript-eslint/parser": "8.12.2",
"@vitejs/plugin-react": "4.3.3",
"concurrently": "9.0.1",
"cypress": "13.15.1",
"cypress-vite": "1.5.0",
"env-cmd": "10.1.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-config-react-app": "7.0.1",
"eslint-import-resolver-typescript": "3.6.3",
"husky": "9.1.6",
"istanbul-lib-coverage": "3.2.2",
"nyc": "17.1.0",
"prettier": "3.3.3",
"standard-version": "9.5.0",
"typescript": "5.6.3",
"vite": "5.4.10",
"vite-plugin-checker": "0.8.0",
"vite-plugin-istanbul": "6.0.2"
},
"packageManager": "yarn@4.5.1"
}