-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
111 lines (111 loc) · 3.49 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "varya.me",
"version": "4.0.0",
"author": "Varya Stepanova <[email protected]>",
"license": "MIT",
"description": "var ya;",
"keywords": [
"gatsby",
"varya",
"blog",
"design systems"
],
"scripts": {
"develop": "gatsby develop",
"start": "npm run develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"devhost": "gatsby develop --host 192.168.0.112",
"format": "prettier --write '**/*.{js,jsx, json, md, mdx}'",
"lint-errors": "eslint \"src/**/*.{js,jsx}\" --quiet",
"lint": "eslint \"src/**/*.{js,jsx}\" --fix",
"stylelint": "stylelint src/**/*.js",
"generate-app-icons": "sh ./scripts/generate-app-icons.sh",
"add-component": "node ./scripts/generate-component $1",
"deploy:build": "gatsby build --prefix-paths",
"deploy:release": "git-directory-deploy --directory ./public --repo varya --branch gh-pages",
"deploy": "run-s deploy:build deploy:release",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "npx chromatic --project-token=skp9osmq6dc",
"chromatic": "npx chromatic --project-token skp9osmq6dc"
},
"dependencies": {
"@mdx-js/mdx": "2.3.0",
"@mdx-js/react": "2.3.0",
"ajv": "^8.17.1",
"ajv-keywords": "^5.1.0",
"disqus-react": "1.1.5",
"eslint-mdx": "2.0.5",
"gatsby": "5.7.0",
"gatsby-plugin-alias-imports": "1.0.5",
"gatsby-plugin-catch-links": "5.7.0",
"gatsby-plugin-google-analytics": "5.7.0",
"gatsby-plugin-image": "3.7.0",
"gatsby-plugin-manifest": "5.7.0",
"gatsby-plugin-mdx": "5.7.0",
"gatsby-plugin-postcss": "6.7.0",
"gatsby-plugin-react-svg": "3.3.0",
"gatsby-plugin-sharp": "5.8.1",
"gatsby-plugin-sitemap": "6.7.0",
"gatsby-plugin-styled-components": "6.7.0",
"gatsby-remark-autolink-headers": "6.7.0",
"gatsby-remark-copy-relative-linked-files": "1.5.0",
"gatsby-remark-images": "7.7.0",
"gatsby-remark-prismjs": "7.7.0",
"gatsby-remark-unwrap-images": "1.0.2",
"gatsby-source-filesystem": "5.7.0",
"gatsby-transformer-sharp": "5.7.0",
"grommet": "2.30.0",
"grommet-icons": "4.10.0",
"postcss": "8.4.21",
"postcss-preset-env": "8.0.1",
"prismjs": "1.29.0",
"prop-types": "15.8.1",
"rc-spider-intergalactico": "0.0.8",
"react": "18.2.0",
"react-calendly": "4.1.1",
"react-dom": "18.2.0",
"react-flatten-children": "1.1.2",
"react-helmet": "6.1.0",
"react-icons": "4.8.0",
"reading-time": "1.5.0",
"remark-gfm": "3.0.1",
"styled-components": "5.3.9",
"styled-components-breakpoint": "3.0.0-preview.20"
},
"devDependencies": {
"@babel/core": "7.21.3",
"babel-eslint": "10.1.0",
"babel-loader": "9.1.2",
"babel-plugin-dynamic-import-webpack": "1.1.0",
"babel-plugin-import": "1.13.6",
"babel-plugin-styled-components": "2.0.7",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"eslint": "8.36.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-markdown": "3.0.0",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-simple-import-sort": "10.0.0",
"gatsby-remark-classes": "1.0.2",
"husky": "^8.0.3",
"prettier": "2.8.4",
"remove-markdown": "0.5.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix"
],
"*.{md,mdx}": [
"prettier --write"
]
}
}