-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 943 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
{
"name": "openbank-challenge",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"test:updateSnapshots": "jest --updateSnapshot"
},
"dependencies": {
"@chakra-ui/react": "^1.6.10",
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@testing-library/user-event": "^13.5.0",
"feather-icons": "^4.28.0",
"framer-motion": "^4.1.17",
"next": "11.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-feather": "^2.0.9",
"react-intl": "^5.21.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"babel-jest": "^27.3.1",
"eslint": "8.0.1",
"eslint-config-next": "11.1.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"react-test-renderer": "^17.0.2"
}
}