-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
114 lines (114 loc) · 3.92 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
{
"name": "graasp-library",
"version": "1.12.0",
"license": "AGPL-3.0-only",
"scripts": {
"start": "next dev -p 3005",
"start:test": "NODE_ENV='test' env-cmd -f ./.env.test next dev -p 3005",
"start:ci": "yarn build && yarn start:next",
"start:next": "next start",
"start:prod": "NODE_ENV=production node build/server.js",
"build": "next build",
"hooks:uninstall": "husky uninstall",
"hooks:install": "husky install",
"test:once": "exit 0",
"lint": "eslint .",
"prettier:check": "prettier --check '{app,src,pages,cypress}/**/*.{js,ts,tsx}'",
"prettier:write": "prettier --write '{app,src,pages,cypress}/**/*.{js,ts,tsx}'",
"check": "yarn lint && yarn prettier:check && yarn tsc --noEmit",
"release": "standard-version -a",
"release:first": "standard-version -a --first-release",
"release:minor": "standard-version -a --release-as minor",
"release:major": "standard-version -a --release-as major",
"release:patch": "standard-version -a --release-as patch",
"postinstall": "husky install",
"post-commit": "git status",
"pre-commit": "yarn check",
"cypress:open": "env-cmd -f ./.env.test cypress open",
"cypress": "concurrently -k -s first \"yarn start:test\" \"wait-on http://localhost:3005 && yarn cypress:run\"",
"cypress:run": "env-cmd -f ./.env.test cypress run --headless --browser chrome --spec \"cypress/**/*.(spec|cy).js\""
},
"dependencies": {
"@emotion/cache": "11.13.1",
"@emotion/react": "11.13.3",
"@emotion/server": "11.11.0",
"@emotion/styled": "11.13.0",
"@graasp/query-client": "5.7.0",
"@graasp/sdk": "5.4.0",
"@graasp/stylis-plugin-rtl": "2.2.0",
"@graasp/translations": "1.43.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/nextjs": "8.35.0",
"@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",
"date-fns": "4.1.0",
"eslint-config-next": "14.2.16",
"http-status-codes": "2.3.0",
"i18next": "23.16.3",
"interweave": "13.1.0",
"katex": "0.16.11",
"lodash.groupby": "4.6.0",
"lodash.isobject": "3.0.2",
"lodash.isstring": "4.0.1",
"lodash.truncate": "4.4.2",
"lucide-react": "0.453.0",
"next": "14.2.16",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-ga4": "2.1.0",
"react-helmet": "6.1.0",
"react-i18next": "15.1.0",
"react-quill": "2.0.0",
"react-router-dom": "6.27.0",
"react-toastify": "10.0.6",
"social-links": "1.14.0",
"stylis": "4.3.4",
"uuid": "10.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@cypress/code-coverage": "3.13.4",
"@types/katex": "^0.16.7",
"@types/lodash.groupby": "4.6.9",
"@types/lodash.truncate": "4.4.9",
"@types/node": "20.17.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-helmet": "6.1.11",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "8.11.0",
"@typescript-eslint/parser": "8.11.0",
"concurrently": "9.0.1",
"cypress": "13.15.1",
"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.1",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-app": "6.2.2",
"husky": "9.1.6",
"nyc": "17.1.0",
"prettier": "3.3.3",
"react-query": "3.39.3",
"standard-version": "9.5.0",
"typescript": "5.6.3",
"wait-on": "8.0.1"
},
"nyc": {
"exclude": [
"pages/api/__coverage__.js"
]
},
"packageManager": "yarn@4.5.1"
}