-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
147 lines (147 loc) · 4.7 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "graasp-builder",
"version": "2.45.0",
"private": true,
"license": "AGPL-3.0-only",
"author": "Graasp",
"contributors": [
"Kim Lan Phan Hoang",
"Basile Spaenlehauer",
"Alexandre Chau"
],
"engines": {
"node": ">=20"
},
"type": "module",
"dependencies": {
"@air/react-drag-to-select": "5.0.10",
"@emotion/cache": "11.13.1",
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@graasp/chatbox": "3.3.0",
"@graasp/map": "1.19.0",
"@graasp/query-client": "5.4.0",
"@graasp/sdk": "5.0.0",
"@graasp/stylis-plugin-rtl": "2.2.0",
"@graasp/translations": "1.40.0",
"@graasp/ui": "5.4.0",
"@mui/icons-material": "6.1.5",
"@mui/lab": "6.0.0-beta.13",
"@mui/material": "6.1.5",
"@sentry/react": "7.119.2",
"axios": "1.7.7",
"date-fns": "4.1.0",
"filesize": "10.1.6",
"http-status-codes": "2.3.0",
"i18next": "23.16.3",
"katex": "0.16.11",
"leaflet-geosearch": "4.0.0",
"lodash.debounce": "4.0.8",
"lodash.groupby": "4.6.0",
"lodash.isequal": "4.5.0",
"lodash.partition": "4.6.0",
"lodash.truncate": "4.4.2",
"lucide-react": "0.453.0",
"papaparse": "5.4.1",
"react": "18.3.1",
"react-beautiful-dnd": "13.1.1",
"react-csv": "2.2.2",
"react-dom": "18.3.1",
"react-ga4": "2.1.0",
"react-helmet-async": "2.0.5",
"react-hook-form": "7.53.1",
"react-i18next": "15.1.0",
"react-image-crop": "11.0.7",
"react-qr-code": "2.0.15",
"react-query": "3.39.3",
"react-quill": "2.0.0",
"react-router": "6.27.0",
"react-router-dom": "6.27.0",
"react-toastify": "10.0.6",
"stylis": "4.3.4",
"uuid": "10.0.0",
"validator": "13.12.0"
},
"scripts": {
"dev": "vite",
"start": "yarn dev",
"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",
"analyze-bundle": "npx vite-bundle-visualizer",
"lint": "eslint .",
"pre-commit": "yarn prettier:check && yarn lint && yarn type-check",
"prettier:check": "prettier --check {src,cypress}/**/*.{js,ts,tsx,json}",
"prettier:write": "prettier --write {src,cypress}/**/*.{js,ts,tsx,json}",
"type-check": "tsc --noEmit && tsc --noEmit -p cypress/tsconfig.json",
"check": "yarn prettier:check && yarn lint && yarn type-check",
"postinstall": "husky install",
"cypress:open": "env-cmd -f ./.env.test cypress open --browser chrome",
"test": "yarn test:unit && yarn build:test && concurrently -k -s first \"yarn preview:test\" \"yarn cypress:run\"",
"cypress:run": "env-cmd -f ./.env.test cypress run --browser chrome",
"cypress:run:component": "env-cmd -f ./.env.test cypress run --component --browser chrome",
"test:unit": "yarn vitest"
},
"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.4",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/jest": "29.5.14",
"@types/lodash.debounce": "4.0.9",
"@types/lodash.groupby": "4.6.9",
"@types/lodash.isequal": "4.5.8",
"@types/lodash.partition": "4.6.9",
"@types/lodash.truncate": "4.4.9",
"@types/node": "20.17.0",
"@types/papaparse": "5.3.15",
"@types/react": "18.3.12",
"@types/react-csv": "1.1.10",
"@types/react-dom": "18.3.1",
"@types/uuid": "10.0.0",
"@types/validator": "13.12.2",
"@typescript-eslint/eslint-plugin": "8.11.0",
"@typescript-eslint/parser": "8.11.0",
"@vitejs/plugin-react": "4.3.3",
"concurrently": "9.0.1",
"cypress": "13.15.1",
"cypress-localstorage-commands": "2.2.6",
"env-cmd": "10.1.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"husky": "9.1.6",
"nyc": "17.1.0",
"prettier": "3.3.3",
"typescript": "5.6.3",
"vite": "5.4.10",
"vite-plugin-checker": "0.8.0",
"vite-plugin-istanbul": "6.0.2",
"vitest": "2.1.3"
},
"packageManager": "[email protected]"
}