forked from galasa-dev/galasa.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.4 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
{
"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.8.3",
"gatsby": "^2.22.12",
"gatsby-image": "^2.2.39",
"gatsby-plugin-catch-links": "^2.1.24",
"gatsby-plugin-layout": "^1.1.21",
"gatsby-plugin-manifest": "^2.2.37",
"gatsby-plugin-react-helmet": "^3.1.21",
"gatsby-plugin-react-svg": "^2.1.2",
"gatsby-plugin-sass": "^2.1.27",
"gatsby-plugin-sharp": "^2.4.0",
"gatsby-plugin-sitemap": "^2.2.26",
"gatsby-remark-copy-linked-files": "^2.1.36",
"gatsby-remark-images": "^3.1.42",
"gatsby-remark-prismjs": "^3.3.30",
"gatsby-source-filesystem": "^2.1.46",
"gatsby-transformer-remark": "^2.6.48",
"gatsby-transformer-sharp": "^2.3.13",
"gatsby-transformer-yaml": "^2.2.23",
"node-sass": "^4.13.1",
"prismjs": "^1.19.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-error-overlay": "^3.0.0",
"react-helmet": "^5.2.1"
},
"devDependencies": {
"@danbruegge/gatsby-plugin-stylelint": "^4.0.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-react-app": "^5.1.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^1.7.0",
"gatsby-plugin-eslint": "^2.0.8",
"prettier": "^1.19.1",
"stylelint": "^13.0.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-recommended-scss": "^4.1.0",
"stylelint-prettier": "^1.1.2",
"stylelint-scss": "^3.14.0",
"typescript": "^3.7.5"
},
"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": "12.x"
}
}