-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.07 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.07 KB
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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:analyze": "next build --profile",
"build:start": "next build && next start",
"test": "jest",
"start": "next start",
"lint": "next lint",
"cy:open": "cypress open",
"prepare": "husky install"
},
"dependencies": {
"@casl/ability": "6.3.1",
"@casl/react": "3.1.0",
"@emotion/cache": "latest",
"@emotion/react": "latest",
"@emotion/server": "latest",
"@emotion/styled": "latest",
"@mui/icons-material": "latest",
"@mui/material": "latest",
"axios": "1.1.3",
"date-fns": "2.29.3",
"formik": "2.2.9",
"jest": "^29.3.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"next": "12.3.1",
"nookies": "2.5.2",
"react": "18.2.0",
"react-copy-to-clipboard": "5.1.0",
"react-digit-input": "^2.1.0",
"react-dom": "18.2.0",
"react-password-checklist": "1.3.3",
"react-toastify": "9.0.8",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"yup": "0.32.11"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "18.11.0",
"@types/react": "18.0.21",
"@types/react-copy-to-clipboard": "5.0.4",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "4.9.0",
"@typescript-eslint/parser": "4.9.0",
"babel-jest": "^29.3.1",
"cypress": "10.10.0",
"eslint": "7.28.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-import-helpers": "1.1.0",
"eslint-plugin-prettier": "3.2.0",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-testing-library": "5.7.3",
"husky": "^8.0.0",
"identity-obj-proxy": "3.0.0",
"jest-environment-jsdom": "29.2.1",
"prettier": "2.2.1",
"ts-jest": "^29.0.3",
"typescript": "4.8.4"
}
}