-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.68 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
{
"name": "sunnumsan-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "husky install",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.1",
"dom-to-image": "^2.6.0",
"file-saver": "^2.0.5",
"next": "12.1.4",
"next-redux-wrapper": "^7.0.5",
"node-sass": "^7.0.1",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-redux": "^8.0.1",
"redux": "^4.2.0",
"redux-devtools-extension": "^2.13.9"
},
"devDependencies": {
"@next/eslint-plugin-next": "latest",
"@svgr/webpack": "^6.2.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@types/dom-to-image": "^2",
"@types/file-saver": "^2",
"@types/jest": "^27.5.1",
"@types/node": "17.0.23",
"@types/prettier": "^2",
"@types/react": "18.0.0",
"@types/react-dom": "18.0.0",
"@types/testing-library__jest-dom": "^5",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"eslint-config-next": "12.1.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"husky": "^7.0.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"ts-jest": "^28.0.2",
"typescript": "^4.6.3"
},
"packageManager": "yarn@3.2.0",
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}