-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.53 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
{
"name": "my-blog",
"version": "1.0.0",
"private": true,
"description": "My Blog",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "eslint '*.ts' 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix '*.ts' 'src/**/*.{js,jsx,ts,tsx}'",
"format:script": "prettier --write --loglevel=warn 'src/**/*.{js,jsx,ts,tsx,json,md,mdx}' '*.{js,jsx,ts,tsx,md,mdx}' 'article/**/*.mdx'",
"format:css": "stylelint --fix 'src/**/*.{css,scss}'",
"format:all": "npm run format:script && npm run format:css",
"preinstall": "typesync || :"
},
"dependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"gatsby": "^4.16.0",
"gatsby-plugin-feed": "^4.16.0",
"gatsby-plugin-google-gtag": "^4.16.0",
"gatsby-plugin-image": "^2.16.1",
"gatsby-plugin-manifest": "^4.16.0",
"gatsby-plugin-mdx": "^3.16.1",
"gatsby-plugin-react-helmet": "^5.16.0",
"gatsby-plugin-sass": "^5.16.0",
"gatsby-plugin-sharp": "^4.16.1",
"gatsby-plugin-sitemap": "^5.16.0",
"gatsby-remark-autolink-headers": "^5.16.0",
"gatsby-remark-images": "^6.16.0",
"gatsby-remark-prismjs": "^6.16.0",
"gatsby-remark-prismjs-title": "^1.0.0",
"gatsby-source-filesystem": "^4.16.0",
"gatsby-transformer-sharp": "^4.16.0",
"prismjs": "^1.27.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-icons": "^4.4.0",
"sanitize.css": "^13.0.0",
"sass": "^1.52.3"
},
"devDependencies": {
"@graphql-eslint/eslint-plugin": "^3.10.4",
"@types/eslint": "^8.4.3",
"@types/mdx-js__react": "^1.5.5",
"@types/prettier": "^2.6.3",
"@types/prismjs": "^1.26.0",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.17",
"@types/react-helmet": "^6.1.5",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"prettier": "^2.5.1",
"stylelint": "^14.9.1",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.1.0",
"typed-scss-modules": "^6.5.0",
"typescript": "^4.7.3"
}
}