-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
147 lines (147 loc) · 4.42 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-app-file-drop",
"version": "3.0.3",
"private": true,
"author": "Graasp",
"contributors": [
"Juan Carlos Farah",
"André Nogueira",
"Kim Lan Phan Hoang",
"Jérémy La Scala"
],
"homepage": ".",
"license": "AGPL3.0-only",
"engines": {
"node": ">=20"
},
"type": "module",
"dependencies": {
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.5",
"@graasp/apps-query-client": "3.4.15",
"@graasp/sdk": "4.14.1",
"@graasp/ui": "4.19.3",
"@mui/icons-material": "5.15.20",
"@mui/lab": "5.0.0-alpha.170",
"@mui/material": "5.15.20",
"@sentry/react": "~8.36.0",
"@tanstack/react-query": "4.36.1",
"@uppy/core": "3.13.0",
"@uppy/dashboard": "3.9.0",
"@uppy/drag-drop": "3.1.0",
"@uppy/file-input": "3.1.2",
"@uppy/progress-bar": "3.1.1",
"@uppy/react": "3.4.0",
"@uppy/xhr-upload": "3.6.7",
"file-saver": "~2.0.5",
"i18next": "~23.11.5",
"jszip": "~3.10.1",
"lodash.isobject": "~3.0.2",
"lodash.isstring": "~4.0.1",
"qs": "6.12.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "14.1.2",
"react-router-dom": "6.24.0",
"react-toastify": "10.0.5",
"stylis-plugin-rtl": "^2.1.1",
"tss-react": "4.9.10",
"uuid": "^10.0.0",
"vitest": "^1.6.0"
},
"scripts": {
"dev": "yarn vite",
"dev:mock": "VITE_ENABLE_MOCK_API=true && yarn vite",
"start:test": "yarn vite --mode test",
"build": "yarn vite build",
"build:test": "yarn vite build --mode test",
"preview": "yarn vite preview",
"preview:test": "yarn vite preview --mode test",
"postinstall": "husky install",
"lint": "eslint .",
"prettier:write": "prettier {src,cypress}/**/*.{ts,tsx,js,jsx} --write",
"prettier:check": "prettier {src,cypress}/**/*.{ts,tsx,js,jsx} --check",
"type-check": "tsc --noEmit",
"check": "yarn lint && yarn prettier:check && yarn type-check",
"hooks:install": "husky install",
"hooks:uninstall": "husky uninstall",
"pre-commit": "yarn prettier:check && yarn lint",
"cypress:open": "env-cmd -f ./.env.test cypress open",
"test": "concurrently -k -s first \"yarn start:test\" \"yarn test:ci\" ",
"test:ci": "env-cmd -f ./.env.test cypress run --browser chrome --headless && nyc report --reporter=text --reporter=text-summary",
"unit-tests": "vitest",
"cov:report": "open ./coverage/lcov-report/index.html"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@cypress/code-coverage": "3.12.39",
"@cypress/instrument-cra": "1.4.0",
"@tanstack/react-query-devtools": "4.36.1",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/file-saver": "^2.0.7",
"@types/i18n": "0.13.12",
"@types/jest": "^29.5.12",
"@types/lodash.isobject": "3.0.9",
"@types/lodash.isstring": "4.0.9",
"@types/node": "^20.14.9",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "7.14.1",
"@typescript-eslint/parser": "7.14.1",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/browser": "^1.6.0",
"concurrently": "8.2.2",
"cross-env": "7.0.3",
"cypress": "13.12.0",
"cypress-file-upload": "5.0.8",
"env-cmd": "10.1.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "~19.0.4",
"eslint-config-prettier": "~8.10.0",
"eslint-config-react": "1.1.7",
"eslint-config-react-app": "~7.0.1",
"eslint-import-resolver-typescript": "~3.6.1",
"eslint-plugin-cypress": "~2.15.2",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-jsx-a11y": "~6.9.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.3",
"eslint-plugin-react-hooks": "~4.6.2",
"husky": "~9.0.11",
"npm-run-all2": "6.2.0",
"nyc": "17.0.0",
"prettier": "3.3.2",
"standard-version": "9.5.0",
"typescript": "5.5.2",
"vite": "^5.3.1",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-istanbul": "^6.0.2",
"wait-on": "7.2.0"
},
"release": {
"analyzeCommits": "conventional"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"resolutions": {
"@graasp/sdk": "3.4.1"
},
"packageManager": "[email protected]",
"nyc": {
"all": true,
"include": [
"src/**/*.{js,ts,jsx,tsx}"
],
"exclude": [
"src/setupTests.ts",
"src/**/*.d.ts",
"cypress/*"
]
}
}