-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.43 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.43 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "my-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint ./",
"prepare": "husky install",
"test": "jest"
},
"dependencies": {
"@babel/preset-react": "7.17.12",
"@next-auth/react-query": "^0.0.12",
"@types/bcrypt": "^5.0.0",
"@types/jest-when": "^3.5.1",
"@types/next-auth": "^3.15.0",
"@types/react-test-renderer": "^18.0.0",
"antd": "^4.20.5",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"docker-ip-get": "^1.1.5",
"fs": "^0.0.1-security",
"ip": "^1.1.8",
"jest-when": "^3.5.1",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"moment": "^2.29.3",
"next": "^12.1.6",
"next-auth": "^4.3.4",
"next-auth-client": "^1.5.0",
"next-i18next": "^11.0.0",
"path": "^0.12.7",
"pg": "^8.7.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-grid-layout": "^1.3.4",
"react-query": "^3.39.0",
"swr": "^1.3.0",
"ts-node": "^10.7.0",
"yaml": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.12",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.16.7",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.2.0",
"@types/ip": "^1.1.0",
"@types/jest": "^27.5.1",
"@types/js-yaml": "^4.0.5",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.40",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.4",
"@types/react-grid-layout": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^28.1.0",
"eslint": "^8.15.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "12.1.6",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-testing-library": "^5.5.0",
"husky": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"lint-staged": "^12.4.1",
"node-mocks-http": "^1.11.0",
"prettier": "^2.6.2",
"react-test-renderer": "^18.1.0",
"ts-jest": "^28.0.2",
"typescript": "4.6.4"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"yarn eslint --fix",
"yarn prettier --write"
]
}
}