-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.87 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
{
"name": "contacts",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --detectOpenHandles --forceExit --coverage",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test start http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test start http://localhost:3000 cypress:headless"
},
"dependencies": {
"@hookform/resolvers": "^2.8.0",
"@reduxjs/toolkit": "^1.6.1",
"classnames": "^2.3.1",
"next": "11.1.2",
"next-images": "^1.8.1",
"next-redux-wrapper": "^7.0.5",
"normalizr": "^3.6.1",
"polished": "^4.1.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.16.0",
"react-redux": "^7.2.5",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"sass": "^1.42.1",
"styled-components": "^5.3.1",
"uuid": "^8.3.2",
"yup": "^0.32.9"
},
"devDependencies": {
"@next/bundle-analyzer": "^11.1.2",
"@testing-library/dom": "^8.6.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.2",
"@types/react": "17.0.24",
"@types/react-redux": "^7.1.18",
"@types/redux-logger": "^3.0.9",
"@types/styled-components": "^5.1.14",
"@types/uuid": "^8.3.1",
"babel-jest": "^27.2.1",
"babel-plugin-root-import": "^6.6.0",
"babel-plugin-styled-components": "^1.13.2",
"cypress": "^8.4.1",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.1",
"next-compose-plugins": "^2.2.1",
"react-test-renderer": "^17.0.2",
"typescript": "4.4.3"
}
}