forked from galasa-dev/galasa.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.44 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
{
"name": "galasa-site",
"private": true,
"description": "The documentation site for Galasa",
"version": "0.0.1",
"author": "Ben Cox <ben.cox@uk.ibm.com>",
"dependencies": {
"@babel/runtime": "^7.20.7",
"@docsearch/react": "^3.3.2",
"@fontsource/ibm-plex-mono": "^4.5.13",
"@fontsource/open-sans": "^4.5.14",
"@fontsource/work-sans": "^4.5.14",
"gatsby": "^5.10.0",
"gatsby-plugin-catch-links": "^5.4.0",
"gatsby-plugin-csp": "^1.1.4",
"gatsby-plugin-layout": "^4.4.0",
"gatsby-plugin-manifest": "^5.12.3",
"gatsby-plugin-react-svg": "^3.3.0",
"gatsby-plugin-sass": "^6.4.0",
"gatsby-plugin-sharp": "^5.12.3",
"gatsby-plugin-sitemap": "^6.4.0",
"gatsby-remark-copy-linked-files": "^6.4.0",
"gatsby-remark-images": "^7.4.0",
"gatsby-remark-prismjs": "^7.4.0",
"gatsby-source-filesystem": "^5.4.0",
"gatsby-transformer-remark": "^6.4.0",
"gatsby-transformer-sharp": "^5.12.3",
"gatsby-transformer-yaml": "^5.7.0",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.57.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"babel-preset-gatsby": "^3.4.0",
"eslint": "^8.32.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^3.2.0",
"gatsby-plugin-eslint": "^4.0.3",
"prettier": "^2.8.3",
"stylelint": "^15.10.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-scss": "^4.3.0",
"typescript": "^4.9.4"
},
"scripts": {
"clean": "gatsby clean",
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"src/**/*.{js,jsx,scss}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,scss}\"",
"format:check:ci": "prettier --list-different --write \"src/**/*.{js,jsx,scss}\" | xargs git --no-pager diff --color --exit-code --",
"start": "npm run develop",
"serve": "gatsby serve",
"stylelint-check": "stylelint-config-prettier-check",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
},
"engines": {
"node": "18.x"
},
"overrides": {
"lmdb": "2.6.0"
}
}