-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.15 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
{
"name": "color-of-code",
"private": true,
"description": "color-of-code",
"version": "2.0.0",
"author": "Jaap de Haan <jaap.dehaan@freenet.de>",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "rm -rf .cache public",
"lint": "run-s lint:*",
"lint:javascript": "eslint ./src ./plugins --max-warnings 0",
"lint:css": "stylelint src/**/*.css --config .stylelintrc",
"lint-fix": "eslint --fix ./src",
"format": "prettier --config ./.prettierrc --write \"src/**/*.js\"",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\"",
"md:link-check": "find ./content -name \\*.md -exec markdown-link-check -c .markdown-link-check.json {} \\;"
},
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@mermaid-js/mermaid-cli": "^11.2.1",
"acorn": "^8.11.3",
"babel-preset-gatsby": "^3.13.2",
"d3": "^7.9.0",
"gatsby": "^5.14.0",
"gatsby-link": "^5.13.1",
"gatsby-plugin-catch-links": "^5.13.1",
"gatsby-plugin-image": "^3.13.1",
"gatsby-plugin-manifest": "^5.13.1",
"gatsby-plugin-offline": "^6.13.2",
"gatsby-plugin-react-helmet": "^6.13.1",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-sharp": "^5.13.1",
"gatsby-plugin-sitemap": "^6.13.1",
"gatsby-remark-copy-linked-files": "^6.13.1",
"gatsby-remark-images": "^7.13.1",
"gatsby-remark-plantuml": "^0.7.0",
"gatsby-remark-prismjs": "^7.13.1",
"gatsby-source-filesystem": "^5.13.1",
"gatsby-transformer-remark": "^6.13.1",
"gatsby-transformer-sharp": "^5.13.1",
"lodash": "^4.17.21",
"mermaid": "^10.9.3",
"postcss": "^8.4.38",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-icons": "^5.2.0",
"rehype-react": "^7.2.0",
"remark": "^14.0.3",
"remark-math": "^5.1.1",
"skyrta": "^0.1.8",
"url-exists-deep": "^2.1.4"
},
"keywords": [
"gatsby",
"color-of-code",
"blog",
"software development"
],
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/eslint-parser": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-css-modules": "^2.12.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-webpack-plugin": "^4.1.0",
"gatsby-plugin-eslint": "^4.0.4",
"immer": "^9.0.19",
"markdown-link-check": "^3.12.1",
"npm-run-all": "^4.1.5",
"object-path": "^0.11.8",
"prettier": "^3.2.5",
"stylelint": "^16.4.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-prettier": "^5.0.0",
"stylelint-scss": "^6.2.1",
"trim": "^1.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Color-Of-Code/website"
},
"bugs": {
"url": "https://github.com/Color-Of-Code/website/issues"
}
}