-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.39 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
{
"name": "bonobo-front",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint-fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"test": "jest --watchAll",
"test:coverage": "jest --coverage --silent --passWithNoTests"
},
"dependencies": {
"@chakra-ui/react": "^1.7.2",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"axios": "^0.24.0",
"framer-motion": "^4",
"next": "12.0.7",
"nprogress": "^0.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-i18next": "^11.14.3",
"react-redux": "^7.2.6",
"react-toastify": "^8.1.0",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@testing-library/dom": "^8.11.1",
"@testing-library/jest-dom": "^5.16.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/faker": "^5.5.9",
"@types/node": "16.11.11",
"@types/react": "17.0.37",
"@types/react-redux": "^7.1.20",
"babel-jest": "^26.6.3",
"babel-plugin-inline-react-svg": "^2.0.1",
"eslint": "8.4.0",
"eslint-config-next": "12.0.7",
"faker": "^5.5.3",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-dom": "^4.0.0",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"typescript": "4.5.2"
}
}