forked from kbariotis/kostasbariotis.com
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.78 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.78 KB
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
97
98
99
100
101
102
103
104
105
{
"name": "towavephone.com",
"description": "My personal home page",
"private": true,
"lint-staged": {
"*.{js,jsx}": [
"./node_modules/.bin/eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:markdown"
}
},
"scripts": {
"start": "yarn dev",
"build": "cross-env NODE_OPTIONS=--max-old-space-size=6144 gatsby build --prefix-paths",
"deploy:github": "gh-pages -d public -r git@github.com:towavephone/towavephone.github.io.git -b master",
"deploy:coding": "gh-pages -d public -r git@git.coding.net:towavephone/towavephone.coding.me.git -b master",
"deploy:gitee": "gh-pages -d public -r git@gitee.com:towavephone/towavephone.github.io.git -b master",
"bdg": "yarn build && yarn deploy:github",
"bdc": "yarn build && yarn deploy:coding",
"dev": "cross-env NODE_OPTIONS=--max-old-space-size=6144 gatsby develop",
"dev:lan": "cross-env NODE_OPTIONS=--max-old-space-size=6144 gatsby develop -H 0.0.0.0",
"serve": "gatsby serve",
"lint": "yarn lint:markdown",
"lint:markdown": "markdownlint ./blog/**/*.md",
"lint:js": "eslint src/**/*.js gatsby-config.js gatsby-browser.js gatsby-node.js",
"fix": "yarn fix:markdown",
"fix:markdown": "markdownlint --fix ./blog/**/*.md",
"precommit": "yarn lint:markdown",
"cleanup": "rimraf -rf node_modules/gh-pages/.cache",
"preinstall": "node ./scripts/nodecheckversion.js",
"prestart": "node ./scripts/nodecheckversion.js"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"gatsby-cli": "^1.1.52",
"gh-pages": "^1.1.0",
"husky": "^1.0.0-rc.2",
"lint-staged": "^7.1.0",
"markdownlint": "^0.8.1",
"markdownlint-cli": "^0.27.1",
"prettier": "^1.12.1"
},
"dependencies": {
"bootstrap-sass": "^3.3.7",
"classnames": "^2.2.5",
"dom-helpers": "^3.4.0",
"dotenv": "^5.0.1",
"fontfaceobserver": "^2.0.13",
"gatsby": "^1.9.279",
"gatsby-image": "^1.0.51",
"gatsby-link": "^1.6.44",
"gatsby-plugin-algolia": "^0.0.3",
"gatsby-plugin-canonical-urls": "^1.0.18",
"gatsby-plugin-catch-links": "^1.0.22",
"gatsby-plugin-feed": "^1.3.22",
"gatsby-plugin-manifest": "^1.0.22",
"gatsby-plugin-nprogress": "^1.0.14",
"gatsby-plugin-offline": "^1.0.18",
"gatsby-plugin-react-helmet": "^2.0.11",
"gatsby-plugin-sass": "^1.0.26",
"gatsby-plugin-sharp": "^1.6.44",
"gatsby-plugin-sitemap": "^1.2.23",
"gatsby-remark-autolink-headers": "^1.4.18",
"gatsby-remark-code-buttons-towavephone": "^2.1.1",
"gatsby-remark-copy-linked-files": "1.5.37",
"gatsby-remark-design-system-towavephone": "^1.0.18",
"gatsby-remark-embed-snippet": "^1.0.22",
"gatsby-remark-embedded-codesandbox-towavephone": "^1.3.8",
"gatsby-remark-emoji": "^0.0.2",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-graph-towavephone": "0.2.9",
"gatsby-remark-images": "^1.5.63",
"gatsby-remark-katex": "^1.0.14",
"gatsby-remark-lazy-load-towavephone": "^1.0.3",
"gatsby-remark-prismjs": "^3.13.0",
"gatsby-remark-responsive-iframe": "^1.4.18",
"gatsby-remark-smartypants": "^1.4.12",
"gatsby-remark-static-images": "^1.0.1",
"gatsby-source-filesystem": "^1.5.36",
"gatsby-transformer-remark": "^1.7.41",
"gatsby-transformer-sharp": "^1.6.24",
"gitalk": "^1.7.2",
"instantsearch.css": "^7.1.0",
"lodash": "^4.17.10",
"pngquant-bin": "^6.0.0",
"prop-types": "^15.6.1",
"re-resizable": "^6.9.0",
"react-helmet": "^5.2.0",
"react-instantsearch": "^5.0.3",
"react-share": "^2.1.1",
"spark-md5": "^3.0.2"
},
"volta": {
"node": "10.24.1",
"yarn": "1.22.19"
}
}