-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "recurrent-software-dev-hw-ts",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watch",
"lint": "next lint",
"type-check": "tsc"
},
"dependencies": {
"@emotion/cache": "latest",
"@emotion/react": "latest",
"@emotion/server": "latest",
"@emotion/styled": "latest",
"@mui/icons-material": "latest",
"@mui/material": "latest",
"@mui/styles": "^5.4.4",
"next": "latest",
"react": "latest",
"react-dom": "latest",
"tss-react": "^3.4.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/node": "latest",
"@types/react": "latest",
"babel-jest": "^27.5.1",
"eslint": "latest",
"eslint-config-next": "latest",
"eslint-plugin-testing-library": "^5.1.0",
"jest": "^27.5.1",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
}
}