-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2 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
{
"name": "@rmariuzzo/mariuzzo.com",
"version": "0.0.0",
"description": "The mariuzzo.com web site.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mariuzzo/mariuzzo.github.com.git"
},
"author": "Rubens Mariuzzo <[email protected]>",
"license": "SEE LICENSE IN ./LICENSE",
"bugs": {
"url": "https://github.com/mariuzzo/mariuzzo.github.com/issues"
},
"homepage": "https://github.com/mariuzzo/mariuzzo.github.com#readme",
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"deploy": "gatsby build && gh-pages -d public -b gh-pages",
"prepare": "husky install",
"new-post": "ts-node ./scripts/new-post.ts"
},
"dependencies": {
"@fontsource/source-code-pro": "^4.5.0",
"@fontsource/source-sans-pro": "^4.5.0",
"date-fns": "^2.23.0",
"gatsby": "^3.12.0",
"gatsby-plugin-google-gtag": "^3.12.0",
"gatsby-plugin-manifest": "^3.12.0",
"gatsby-remark-prismjs": "^5.9.0",
"gatsby-source-filesystem": "^3.12.0",
"gatsby-transformer-remark": "^4.9.0",
"normalize.css": "^8.0.1",
"prismjs": "^1.24.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"styled-breakpoints": "^10.0.1"
},
"devDependencies": {
"@types/inquirer": "^7.3.3",
"@types/react-helmet": "^6.1.2",
"@types/styled-components": "^5.1.12",
"babel-plugin-styled-components": "^1.13.2",
"gatsby-cli": "^3.12.0",
"gatsby-plugin-styled-components": "^4.12.0",
"gatsby-plugin-typescript": "^3.12.0",
"gh-pages": "^3.2.3",
"husky": "^7.0.1",
"inquirer": "^8.1.2",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"shorted-theme": "^0.1.1",
"styled-components": "^5.3.0",
"ts-node": "^10.2.1",
"typescript": "^4.3.5",
"untoken": "^0.0.2",
"yargs-parser": "^18.1.3"
},
"lint-staged": {
"*.{ts,tsx,js,md}": "prettier --write"
}
}