-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
110 lines (110 loc) · 3.59 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
{
"name": "smells",
"description": "Code Smells Catalog",
"version": "1.0.23-alpha.1",
"author": "Marcel Jerzyk",
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.5.1",
"@mui/material": "^5.5.3",
"@mui/styles": "^5.5.3",
"@redux-devtools/extension": "^3.2.2",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/url-join": "^4.0.1",
"acorn": "^8.7.0",
"eslint-config-airbnb-typescript": "^16.1.4",
"gatsby": "^4.11.1",
"gatsby-cli": "^4.11.1",
"gatsby-plugin-catch-links": "^4.11.0",
"gatsby-plugin-feed": "^4.11.1",
"gatsby-plugin-google-analytics": "^4.11.0",
"gatsby-plugin-google-gtag": "^4.11.0",
"gatsby-plugin-htaccess": "^1.4.0",
"gatsby-plugin-manifest": "^4.11.1",
"gatsby-plugin-material-ui": "^4.1.0",
"gatsby-plugin-nprogress": "^4.11.0",
"gatsby-plugin-offline": "^5.11.1",
"gatsby-plugin-react-helmet": "^5.11.0",
"gatsby-plugin-react-redux": "^1.1.0",
"gatsby-plugin-resolve-src": "^2.1.0",
"gatsby-plugin-sass": "^5.11.1",
"gatsby-plugin-sharp": "^4.11.1",
"gatsby-plugin-sitemap": "^5.11.1",
"gatsby-plugin-twitter": "^4.11.1",
"gatsby-plugin-typography": "^4.11.0",
"gatsby-remark-autolink-headers": "^5.11.1",
"gatsby-remark-copy-linked-files": "^5.11.0",
"gatsby-remark-highlight-code": "^3.2.0",
"gatsby-remark-images": "^6.11.1",
"gatsby-remark-prismjs": "^6.11.0",
"gatsby-remark-responsive-iframe": "^5.11.0",
"gatsby-source-filesystem": "^4.11.1",
"gatsby-transformer-remark": "^5.11.1",
"gatsby-transformer-sharp": "^4.9.0",
"node-sass": "^7.0.1",
"prism-react-renderer": "^1.3.1",
"prismjs": "^1.27.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-helmet": "^6.1.0",
"react-redux": "^7.2.8",
"react-refresh": "^0.12.0",
"react-share": "^4.4.0",
"react-twitter-widgets": "^1.10.0",
"react-typography": "^0.16.20",
"redux": "^4.1.2",
"typography": "^0.16.21",
"typography-theme-github": "^0.16.19",
"typography-theme-stow-lake": "^0.16.19"
},
"devDependencies": {
"@types/react-helmet": "^6.1.5",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"gatsby-plugin-root-import": "^2.0.8",
"gh-pages": "^3.2.3",
"graphql": "^15.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"url-join": "^4.0.1"
},
"keywords": [
"gatsby",
"typescript",
"material-ui"
],
"license": "MIT",
"main": "n/a",
"homepage": "https://luzkan.github.io/smells",
"scripts": {
"develop": "gatsby develop",
"dev": "npm run develop",
"serve": "gatsby serve",
"build": "gatsby build",
"build:pp": "gatsby build --prefix-paths",
"build:gh": "npm run clean && npm run build:pp && gh-pages -d public",
"clean": "rm -rf public && rm -rf .cache",
"lint:js": "eslint --ext .js",
"lint:md": "remark content/posts/",
"write-good": "write-good $(glob 'content/posts/**/*.md')",
"format:js": "prettier '**/*.{js,jsx}' --write",
"type-check": "tsc --noEmit",
"deploy": "gatsby build --prefix-paths && gh-pages -d public -b gh-pages"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}