This repository was archived by the owner on Jan 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
153 lines (153 loc) · 5 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
148
149
150
151
152
153
{
"name": "graasp-builder",
"version": "1.1.0",
"private": true,
"license": "AGPL-3.0-only",
"author": "Graasp",
"contributors": [
"Kim Lan Phan Hoang",
"Basile Spaenlehauer",
"Alexandre Chau"
],
"dependencies": {
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@graasp/chatbox": "2.0.0-rc.1",
"@graasp/query-client": "1.0.0",
"@graasp/sdk": "1.0.0",
"@graasp/translations": "1.14.0",
"@graasp/ui": "3.0.0-rc.2",
"@mui/icons-material": "5.11.16",
"@mui/lab": "5.0.0-alpha.133",
"@mui/material": "5.13.4",
"@sentry/react": "7.54.0",
"@sentry/tracing": "7.54.0",
"@uppy/core": "3.2.0",
"@uppy/dashboard": "3.4.0",
"@uppy/drag-drop": "3.0.2",
"@uppy/file-input": "3.0.2",
"@uppy/progress-bar": "3.0.2",
"@uppy/react": "3.1.2",
"@uppy/status-bar": "3.1.2",
"@uppy/tus": "3.1.0",
"@uppy/xhr-upload": "3.2.0",
"ag-grid-community": "29.3.3",
"ag-grid-react": "29.3.3",
"date-fns": "2.30.0",
"filesize": "10.0.7",
"http-status-codes": "2.2.0",
"immutable": "4.3.0",
"katex": "0.16.7",
"lodash.groupby": "4.6.0",
"lodash.partition": "4.6.0",
"lodash.truncate": "4.4.2",
"papaparse": "5.4.1",
"prop-types": "15.8.1",
"qs": "6.11.2",
"react": "^17.0.2",
"react-beautiful-dnd": "13.1.1",
"react-csv": "2.2.2",
"react-dom": "^17.0.2",
"react-ga4": "2.1.0",
"react-i18next": "11.18.6",
"react-image-crop": "9.1.1",
"react-query": "3.39.3",
"react-quill": "2.0.0",
"react-router": "6.11.0",
"react-router-dom": "6.11.0",
"react-scripts": "5.0.1",
"react-toastify": "8.2.0",
"uuid": "9.0.0",
"validator": "13.9.0"
},
"scripts": {
"hooks:uninstall": "husky uninstall",
"hooks:install": "husky install",
"start": "env-cmd -f ./.env.local react-scripts start",
"start:test": "env-cmd -f ./.env.test react-scripts start",
"start:prod": "env-cmd -f ./.env.production react-scripts start",
"start:ci": "react-scripts -r @cypress/instrument-cra start",
"build": "react-scripts build",
"build:local": "env-cmd -f ./.env.local react-scripts build",
"dist": "env-cmd -f ./.env.production react-scripts build",
"dist:dev": "env-cmd -f ./.env.development react-scripts build",
"eject": "react-scripts eject",
"lint": "eslint --resolve-plugins-relative-to .",
"type-check": "tsc --noEmit && tsc --noEmit -p cypress/tsconfig.json",
"check": "yarn prettier:check && yarn lint && yarn type-check",
"prettier:check": "prettier --check src/**/*.{js,ts,tsx,json}",
"prettier:write": "prettier --write src/**/*.{js,ts,tsx,json}",
"cypress:open": "env-cmd -f ./.env.local cypress open",
"cypress": "concurrently \"yarn start:test\" \"wait-on http://localhost:3111 && yarn cypress:run\"",
"cypress:run": "env-cmd -f ./.env.test cypress run --headless --browser chrome",
"postinstall": "husky install"
},
"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": "17.6.5",
"@commitlint/config-conventional": "17.6.5",
"@cypress/code-coverage": "3.10.4",
"@cypress/instrument-cra": "1.4.0",
"@graasp/plugin-websockets": "1.0.0",
"@graasp/websockets": "github:graasp/graasp-websockets.git",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@trivago/prettier-plugin-sort-imports": "4.1.1",
"@types/jest": "29.5.1",
"@types/lodash.partition": "4.6.7",
"@types/lodash.truncate": "4.4.7",
"@types/node": "18.16.3",
"@types/papaparse": "5.3.7",
"@types/qs": "6.9.7",
"@types/react": "^17.0.58",
"@types/react-csv": "1.1.3",
"@types/react-dom": "^17.0.20",
"@types/uuid": "9.0.1",
"@types/validator": "13.7.17",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"concurrently": "8.1.0",
"cypress": "12.13.0",
"cypress-localstorage-commands": "2.2.3",
"env-cmd": "10.1.0",
"eslint": "^8.32.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.6.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"husky": "8.0.3",
"istanbul-lib-coverage": "3.2.0",
"nyc": "15.1.0",
"prettier": "2.8.8",
"react-app-rewired": "2.2.1",
"typescript": "5.0.4",
"wait-on": "7.0.1",
"webpack-bundle-analyzer": "4.9.0"
},
"resolutions": {
"@mui/icons-material": "5.11.16",
"@mui/material": "5.12.3",
"immer": "9.0.21",
"node-forge": "1.3.1",
"nth-check": "2.1.1",
"react-error-overlay": "6.0.11",
"@types/react": "17.0.62",
"@svgr/webpack": "6.5.1"
},
"packageManager": "[email protected]"
}