-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.21 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
68
69
70
71
72
73
74
75
{
"name": "site-pessoal",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"test": "jest --watch",
"format": "prettier --write \"{,!(.next)/**/,!(node_modules)/**/}*.{js,jsx,ts,tsx,css,scss}\""
},
"lint-staged": {
"src/**/*.{ts,tsx}": "npm run lint:fix"
},
"dependencies": {
"axios": "^0.21.1",
"chart.js": "^2.9.3",
"classnames": "^2.2.6",
"crypto-js": "^4.0.0",
"dotenv-webpack": "^2.0.0",
"framer-motion": "^2.6.6",
"next": "^13.4.9",
"next-pwa": "5.5.4",
"perfect-scrollbar": "^1.5.0",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^18.2.0",
"react-ga4": "^2.0.0",
"react-hook-form": "^6.0.4",
"react-icons": "^3.10.0",
"react-lazy-load-image-component": "^1.5.0",
"react-notification-alert": "^0.0.12",
"react-number-format": "^4.4.1",
"react-render-html": "^0.6.0",
"react-reveal": "^1.2.2",
"react-scroll": "^1.7.16",
"react-slick": "^0.27.9",
"react-spinners": "^0.9.0",
"react-textarea-autosize": "^8.0.1",
"reactstrap": "^8.5.1",
"slick-carousel": "^1.8.1",
"styled-components": "^5.2.0",
"yup": "^0.29.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/classnames": "^2.2.10",
"@types/crypto-js": "^3.1.47",
"@types/jest": "^26.0.10",
"@types/next": "^9.0.0",
"@types/node": "^14.0.20",
"@types/react": "18.0.1",
"@types/react-dom": "^16.9.8",
"@types/react-slick": "^0.23.4",
"@types/reactstrap": "^8.5.0",
"@types/styled-components": "^5.1.3",
"@types/yup": "^0.29.3",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"babel-jest": "^26.3.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"jest": "^26.4.2",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"typescript": "^4.0.2"
}
}