-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.66 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
{
"name": "rafaelmartins.dev",
"version": "1.1.0",
"private": true,
"description": "Página pessoal com o propósito de servir como blog e portfólio.",
"author": "Rafael Martins",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/martins-rafael/rafaelmartins.dev"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"deploy:static": "next build && next export",
"lint": "eslint src --max-warnings=0",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*": [
"yarn lint --fix"
]
},
"dependencies": {
"aos": "^2.3.4",
"babel-plugin-prismjs": "^2.1.0",
"disqus-react": "^1.1.1",
"next": "^11.1.2",
"next-pwa": "^5.2.24",
"nextjs-progressbar": "^0.0.13",
"prismjs": "^1.24.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"remark": "^14.0.1",
"remark-html": "^14.0.0",
"sharp": "^0.29.0",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@types/aos": "^3.0.4",
"@types/node": "^16.3.3",
"@types/prismjs": "^1.16.6",
"@types/react": "^17.0.14",
"@types/styled-components": "^5.1.11",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"babel-plugin-styled-components": "^1.13.2",
"eslint": "^7.31.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
}
}