-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.1 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
63
64
65
66
67
{
"name": "bossabox-frontend-challenge",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:base": "npm run svg-to-react && next dev",
"server": "json-server server.json -p 3333",
"svg-to-react": "svgr --no-prettier -d src/components/Icons public/icons",
"test": "jest",
"build": "npm run svg-to-react && next build",
"dev": "concurrently --kill-others \"npm run dev:base\" \"npm run server\"",
"start": "npm run svg-to-react && next build && next start"
},
"dependencies": {
"@svgr/cli": "^5.5.0",
"@unform/core": "^2.1.5",
"@unform/web": "^2.1.5",
"axios": "^0.21.1",
"immer": "^8.0.1",
"next": "10.0.6",
"next-images": "^1.7.0",
"react": "next",
"react-dom": "next",
"react-redux": "^7.2.2",
"react-reveal": "^1.2.2",
"react-spring": "^8.0.27",
"react-svg": "^11.2.3",
"redux": "^4.0.5",
"styled-components": "^5.2.1",
"swr": "^0.4.2",
"uuid": "^8.3.2",
"yup": "^0.32.8"
},
"devDependencies": {
"@testing-library/dom": "^7.29.6",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.0.3",
"@testing-library/user-event": "^12.7.2",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.27",
"@types/react": "^17.0.2",
"@types/react-redux": "^7.1.16",
"@types/redux": "^3.6.0",
"@types/styled-components": "^5.1.7",
"@types/uuid": "^8.3.0",
"@types/yup": "^0.29.11",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"babel-jest": "^26.6.3",
"concurrently": "^5.3.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"json-server": "^0.16.3",
"prettier": "^2.2.1",
"redux-devtools-extension": "^2.13.8",
"typescript": "^4.1.5"
}
}