-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 908 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
41
{
"name": "finalproject-bancow",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"browserslist": {
"production": [
"last 2 versions",
"> 1%"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"axios": "^0.24.0",
"next": "12.0.8",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"redux-saga": "^1.1.3",
"styled-components": "^5.3.3",
"styled-normalize": "^8.0.7"
},
"devDependencies": {
"@types/node": "17.0.8",
"@types/react": "17.0.38",
"@types/react-redux": "^7.1.22",
"@types/styled-components": "^5.1.20",
"eslint": "8.7.0",
"eslint-config-next": "12.0.8",
"typescript": "4.5.4"
}
}