-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 3.63 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
{
"name": "graasp-app-calculator",
"version": "1.4.1",
"private": true,
"author": "EPFL",
"contributors": [
"Kim Lan Phan Hoang"
],
"homepage": ".",
"type": "module",
"license": "AGPL3.0-only",
"dependencies": {
"@emotion/react": "11.13.0",
"@emotion/styled": "11.13.0",
"@graasp/apps-query-client": "3.5.1",
"@graasp/sdk": "4.22.0",
"@graasp/ui": "4.23.0",
"@mui/icons-material": "5.16.4",
"@mui/lab": "5.0.0-alpha.134",
"@mui/material": "5.16.4",
"@tanstack/react-query": "4.36.1",
"@tanstack/react-query-devtools": "4.36.1",
"date-fns": "3.6.0",
"i18next": "23.12.2",
"interweave": "13.1.0",
"katex": "0.16.11",
"lodash.isnan": "3.0.2",
"lodash.isnumber": "3.0.3",
"lodash.isobject": "3.0.2",
"lodash.isstring": "4.0.1",
"lodash.sortby": "4.7.0",
"mathjs": "13.0.3",
"prop-types": "15.8.1",
"qs": "6.12.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "15.0.0",
"react-router-dom": "6.25.1",
"react-select": "5.8.0",
"react-toastify": "10.0.5",
"stylis": "4.3.2",
"stylis-plugin-rtl": "2.1.1"
},
"scripts": {
"dev": "yarn vite",
"start": "yarn dev",
"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",
"pre-commit": "yarn prettier:check && yarn lint && yarn type-check",
"pre-push": "yarn lint && yarn build",
"hooks:install": "husky",
"lint": "eslint .",
"type-check": "tsc --noEmit && tsc --noEmit -p cypress/tsconfig.json",
"check": "yarn prettier:check && yarn lint && yarn type-check",
"prettier:check": "prettier --check {src,cypress}/**/*.{ts,tsx}",
"prettier:write": "prettier --write {src,cypress}/**/*.{ts,tsx}",
"test": "yarn build:test && concurrently -k -s first \"yarn preview:test\" \"yarn cypress:run\"",
"cypress:run": "env-cmd -f ./.env.test cypress run --browser chrome",
"report": "cat ./coverage/lcov.info | codacy-coverage",
"cypress:open": "env-cmd -f ./.env.test cypress open",
"cypress": "npm-run-all --parallel start cypress:open"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/katex": "0.16.7",
"@types/lodash.isnan": "3.0.9",
"@types/lodash.isnumber": "3.0.9",
"@types/lodash.isobject": "3.0.9",
"@types/lodash.isstring": "4.0.9",
"@types/lodash.sortby": "^4.7.9",
"@types/node": "20.14.12",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/stylis": "^4.2.6",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"@vitejs/plugin-react": "4.3.1",
"cypress": "13.13.1",
"env-cmd": "10.1.0",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "8.10.0",
"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.2.1",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"husky": "^9.1.1",
"prettier": "3.3.3",
"typescript": "5.5.4",
"vite": "5.3.4",
"vite-plugin-checker": "0.7.2",
"vite-plugin-istanbul": "6.0.2"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"packageManager": "[email protected]"
}