-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
137 lines (137 loc) · 4.67 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "saglacio-gatsby",
"description": "GatsbyJS starter that includes examples for advanced use cases.",
"version": "0.1.0",
"author": "Émile Bergeron <[email protected]>",
"private": true,
"engines": {
"node": "18.x"
},
"scripts": {
"start": "npm run dev",
"develop": "gatsby develop",
"dev": "npm run develop",
"serve": "gatsby serve",
"serve:cms": "netlify-cms-proxy-server",
"build": "run-s clean build:gatsby",
"build:gatsby": "gatsby build",
"build:storybook": "storybook build -s static -o public/storybook",
"clean": "gatsby clean",
"lint": "run-s lint:*",
"lint:js": "cross-env NODE_ENV=test eslint --ext .js,.jsx .",
"lint:styles": "stylelint \"**/*.?(s)css\"",
"lint:md": "remark .",
"lint:fix": "run-s format:*",
"write-good": "write-good $(glob 'content/posts/**/*.md')",
"format:js": "npm run lint:js -- --fix",
"format:styles": "npm run lint:styles -- --fix",
"storybook": "storybook dev -p 6006 -s static",
"analyze": "cross-env APP_ANALYZE=true npm run build"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@storybook/addon-a11y": "^7.5.1",
"@storybook/addon-actions": "^7.5.1",
"@storybook/addon-backgrounds": "^7.5.1",
"@storybook/addon-essentials": "^7.5.1",
"@storybook/addon-interactions": "^7.5.1",
"@storybook/addon-knobs": "^7.0.2",
"@storybook/addon-links": "^7.5.1",
"@storybook/addon-notes": "^5.3.21",
"@storybook/addon-storysource": "^7.5.1",
"@storybook/addons": "^7.5.1",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^7.5.1",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^7.5.1",
"bootstrap": "^4.6.2",
"classnames": "^2.3.2",
"gatsby": "^5.12.8",
"gatsby-plugin-catch-links": "^5.12.0",
"gatsby-plugin-feed": "^5.12.2",
"gatsby-plugin-google-analytics": "^5.12.0",
"gatsby-plugin-image": "^3.12.2",
"gatsby-plugin-lodash": "^6.12.0",
"gatsby-plugin-manifest": "^5.12.2",
"gatsby-plugin-mdx": "^5.12.2",
"gatsby-plugin-nprogress": "^5.12.0",
"gatsby-plugin-offline": "^6.12.2",
"gatsby-plugin-react-helmet": "^6.12.0",
"gatsby-plugin-sass": "^6.12.2",
"gatsby-plugin-sharp": "^5.12.2",
"gatsby-plugin-sitemap": "^6.12.2",
"gatsby-plugin-twitter": "^5.12.2",
"gatsby-plugin-vanilla-extract": "^4.0.1",
"gatsby-remark-autolink-headers": "^6.12.2",
"gatsby-remark-copy-linked-files": "^6.12.0",
"gatsby-remark-images": "^7.12.2",
"gatsby-remark-prismjs": "^7.12.0",
"gatsby-remark-responsive-iframe": "^6.12.0",
"gatsby-source-filesystem": "^5.12.0",
"gatsby-transformer-remark": "^6.12.2",
"gatsby-transformer-sharp": "^5.12.2",
"gatsby-transformer-yaml": "^5.12.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-markdown": "^8.0.0",
"react-share": "^4.4.1",
"react-twitter-widgets": "^1.11.0",
"reactstrap": "^9.2.0",
"sass": "^1.69.4",
"url-join": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/runtime": "^7.23.2",
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@storybook/react-webpack5": "^7.5.1",
"babel-loader": "^9.1.3",
"babel-plugin-module-resolver": "^5.0.0",
"babel-preset-gatsby": "^3.12.0",
"cli-glob": "^0.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-storybook": "^0.6.15",
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.31",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prop-types": "^15.8.1",
"remark-cli": "^12.0.0",
"remark-preset-lint-recommended": "^6.1.3",
"storybook": "^7.5.1",
"stylelint": "^15.11.0",
"stylelint-config-recommended-scss": "^13.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-order": "^6.0.3",
"stylelint-prettier": "^4.0.2",
"stylelint-scss": "^5.2.1",
"write-good": "^1.0.8",
"yaml": "^2.3.3"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}