-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
69 lines (69 loc) Β· 1.97 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
{
"name": "community-user-profile",
"description": "My portifolio site build with Next.js β using the GitHub GraphQL API",
"repository": {
"type": "git",
"url": "https://github.com/fariasmateuss/community-user-profile.git"
},
"version": "0.1.0",
"private": true,
"author": {
"email": "[email protected]",
"name": "Mateus V. Farias (@fariasmateuss)",
"url": "https://github.com/fariasmateuss/community-user-profile"
},
"license": "MIT",
"dependencies": {
"axios": "^0.21.0",
"date-fns": "^2.28.0",
"graphql": "^16.2.0",
"graphql-request": "^3.7.0",
"next": "^12.0.4",
"next-seo": "^4.28.1",
"nextjs-progressbar": "^0.0.13",
"polished": "^4.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^3.11.0",
"react-toastify": "^8.1.0",
"styled-components": "^5.2.1"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"type-check": "tsc",
"ci": "yarn install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/styled-components": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-styled-components": "^1.13.2",
"eslint": "^7.32.0",
"eslint-config-next": "^12.0.4",
"eslint-config-prettier": "^6.12.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "2.1.2",
"typescript": "^4.4.2"
}
}