-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.9 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
{
"name": "dgit-v2-client",
"version": "1.1.1",
"private": true,
"homepage": "http://dgit.b1nd.com",
"license": "MIT",
"contributors": [
{
"name": "Clzzi",
"email": "[email protected]",
"url": "https://github.com/Clzzi"
}
],
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint",
"test": "jest --coverage --cache --detectOpenHandles",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"lint-staged": {
"**/*.{tsx,ts,jsx,js}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"axios": "^0.24.0",
"jest": "^27.3.1",
"jsonwebtoken": "^8.5.1",
"next": "^12.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-toastify": "^8.1.0",
"recoil": "^0.4.1",
"styled-components": "^5.3.3",
"styled-reset": "^4.3.4"
},
"devDependencies": {
"@svgr/webpack": "^5.5.0",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "16.11.6",
"@types/react": "17.0.33",
"@types/styled-components": "^5.1.15",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"dotenv": "^10.0.0",
"eslint": "7.32.0",
"eslint-config-next": "12.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest-styled-components": "^7.0.5",
"lint-staged": "^12.1.2",
"msw": "^0.35.0",
"prettier": "^2.4.1",
"react-ga": "^3.3.0",
"typescript": "4.4.4"
}
}