-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.47 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "www",
"private": true,
"description": "Daniela Matos de Carvalho personal website",
"version": "0.1.0",
"author": "Daniela Matos de Carvalho <alunassertiva@gmail.com>",
"dependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"a11y-syntax-highlighting": "^0.2.0",
"date-fns": "^2.25.0",
"gatsby": "^2.24.65",
"gatsby-image": "^2.2.39",
"gatsby-plugin-feed-mdx": "^1.0.1",
"gatsby-plugin-manifest": "^2.2.31",
"gatsby-plugin-mdx": "^1.2.41",
"gatsby-plugin-offline": "^3.0.33",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-sharp": "^2.4.0",
"gatsby-remark-copy-linked-files": "^2.1.36",
"gatsby-remark-images": "^3.1.42",
"gatsby-remark-prismjs": "^3.3.30",
"gatsby-source-filesystem": "^2.1.40",
"gatsby-transformer-sharp": "^2.3.7",
"lodash": "^4.17.21",
"param-case": "^3.0.4",
"prismjs": "^1.25.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"babel-jest": "^27.2.4",
"babel-preset-gatsby": "^1.14.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.4",
"lint-staged": "^11.2.0",
"prettier": "^2.4.1"
},
"keywords": [
"daniela",
"daniela matos de carvalho",
"personal",
"website",
"engineer",
"writer",
"speaker",
"photographer"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"lint": "eslint . --ext js,json",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/sericaia/www"
},
"bugs": {
"url": "https://github.com/sericaia/www/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.*": [
"prettier --write",
"git add"
]
}
}