-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
{
"name": "next-boilerplate",
"version": "1.0.0",
"private": true,
"author": {
"email": "[email protected]",
"name": "Douglas Henrique",
"url": "https://dougdev.com.br/"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"format": "prettier \"./src/**/*.{ts,tsx}\" --write",
"eslint:check": "eslint --ext .ts,.tsx src/ --fix",
"generate": "yarn plop --plopfile ./generators/plopfile.js"
},
"dependencies": {
"axios": "^0.24.0",
"next": "^12.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.3.1",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@swc/core": "^1.2.112",
"@testing-library/dom": "^8.11.1",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^13.4.0",
"@types/jest": "^27.0.3",
"@types/node": "16.11.10",
"@types/react": "17.0.37",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-next": "^12.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^27.3.1",
"plop": "^2.7.6",
"prettier": "2.5.0",
"ts-jest": "^27.0.7",
"typescript": "4.5.2"
},
"resolutions": {
"styled-components": "^5"
}
}