-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.69 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
{
"name": "resivo-coding-challenge",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"test:ci": "jest --ci",
"format:write": "prettier --write --ignore-unknown .",
"format:check": "prettier --check ."
},
"engines": {
"node": ">=16.13.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.1",
"@mui/material": "^5.14.2",
"@mui/x-data-grid": "^6.10.0",
"@reduxjs/toolkit": "^1.9.5",
"axios": "^1.4.0",
"http-errors": "^2.0.0",
"lodash-es": "^4.17.21",
"luxon": "^3.3.0",
"next": "13.4.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.1.1",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.8.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/http-errors": "^2.0.1",
"@types/jest": "^29.5.3",
"@types/lodash-es": "^4.17.8",
"@types/luxon": "^3.3.1",
"@types/node": "18.14.2",
"@types/react": "18.2.17",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "8.45.0",
"eslint-config-next": "13.4.12",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-testing-library": "^5.11.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"next-router-mock": "^0.9.7",
"prettier": "^3.0.0",
"typescript": "5.1.6"
}
}