-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
128 lines (128 loc) · 4.04 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
{
"name": "graasp-analytics",
"version": "2.15.2",
"private": true,
"author": "Graasp",
"engines": {
"node": ">=20"
},
"type": "module",
"contributors": [
"Hagop Taminian",
"Juan Carlos Farah",
"Kim Lan Phan Hoang",
"Po-Jui Chang",
"Basile Spaenlehauer"
],
"dependencies": {
"@emotion/cache": "11.13.1",
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@graasp/query-client": "4.0.1",
"@graasp/sdk": "4.32.1",
"@graasp/stylis-plugin-rtl": "2.2.0",
"@graasp/translations": "1.39.0",
"@graasp/ui": "5.2.1",
"@mui/icons-material": "5.16.7",
"@mui/lab": "5.0.0-alpha.141",
"@mui/material": "5.16.7",
"@sentry/react": "7.119.1",
"date-fns": "4.1.0",
"google-map-react": "2.2.1",
"http-status-codes": "2.3.0",
"i18next": "23.15.2",
"lodash.capitalize": "4.2.1",
"lodash.countby": "4.6.0",
"lodash.groupby": "4.6.0",
"lodash.sortby": "4.7.0",
"lodash.truncate": "4.4.2",
"lucide-react": "0.447.0",
"miragejs": "0.1.48",
"react": "18.3.1",
"react-date-range": "2.0.1",
"react-dom": "18.3.1",
"react-ga4": "2.1.0",
"react-i18next": "15.0.2",
"react-router-dom": "6.26.2",
"react-toastify": "10.0.5",
"recharts": "2.12.7",
"stylis": "4.3.4",
"supercluster": "8.0.1",
"use-supercluster": "0.4.0",
"uuid": "10.0.0"
},
"scripts": {
"dev": "vite",
"start": "yarn dev",
"start:test": "NODE_ENV=development vite --mode test",
"build": "vite build",
"build:dev": "vite build --mode development",
"build:test": "NODE_ENV=development vite build --mode test",
"preview": "vite preview",
"preview:dev": "vite preview --mode development",
"preview:test": "NODE_ENV=development vite preview --mode test",
"lint": "eslint .",
"pre-commit": "yarn prettier:check && yarn lint && yarn type-check",
"hooks": "husky",
"analyze-bundle": "npx vite-bundle-visualizer",
"type-check": "tsc --noEmit -p tsconfig.eslint.json",
"check": "yarn prettier:check && yarn lint && yarn type-check",
"test": "NODE_ENV=development yarn build:test && concurrently -k -s first \"yarn preview:test\" \"yarn cypress:run\"",
"cypress": "yarn test",
"cypress:open": "env-cmd -f ./.env.test cypress open --browser chrome",
"cypress:run": "env-cmd -f ./.env.test cypress run --browser chrome",
"prettier:check": "prettier --check 'src/**/*.{js,tsx,ts}'",
"prettier:write": "prettier --write 'src/**/*.{js,tsx,ts}'",
"postinstall": "husky"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@cypress/code-coverage": "3.13.4",
"@testing-library/jest-dom": "6.5.0",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/google-map-react": "2.1.10",
"@types/lodash.capitalize": "4.2.9",
"@types/lodash.countby": "4.6.9",
"@types/lodash.groupby": "4.6.9",
"@types/lodash.truncate": "4.4.9",
"@types/node": "20.16.10",
"@types/react-date-range": "1.4.9",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "8.8.0",
"@typescript-eslint/parser": "8.8.0",
"@vitejs/plugin-react": "4.3.2",
"concurrently": "9.0.1",
"cross-env": "7.0.3",
"cypress": "13.15.0",
"env-cmd": "10.1.0",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"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.0",
"husky": "9.1.6",
"istanbul-lib-coverage": "3.2.2",
"nyc": "17.1.0",
"prettier": "3.3.3",
"typescript": "5.6.2",
"vite": "5.4.8",
"vite-plugin-checker": "0.8.0",
"vite-plugin-istanbul": "6.0.2"
},
"packageManager": "[email protected]"
}