-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1000 Bytes
/
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
{
"name": "next-redux",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"prepare": "husky install",
"start": "next start",
"test": "jest"
},
"dependencies": {
"@reduxjs/toolkit": "^1.7.1",
"axios": "^0.25.0",
"next": "12.0.10",
"next-redux-wrapper": "^7.0.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "^7.2.6",
"sitemap": "^7.1.1"
},
"devDependencies": {
"@swc/jest": "^0.2.17",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/node": "17.0.14",
"@types/react": "17.0.38",
"eslint": "8.8.0",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.3.3",
"msw": "^0.36.8",
"prettier": "^2.5.1",
"react-test-renderer": "^17.0.2",
"typescript": "4.5.5"
}
}