-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
90 lines (90 loc) · 3.03 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
{
"name": "clinicjs",
"description": "Clinijs.org website.",
"version": "0.0.1",
"dependencies": {
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-styled-components": "^1.10.7",
"directory-tree": "^2.2.4",
"gatsby": "^2.19.12",
"gatsby-link": "^2.2.29",
"gatsby-plugin-catch-links": "^2.1.25",
"gatsby-plugin-feed": "^2.3.27",
"gatsby-plugin-force-trailing-slashes": "^1.0.4",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-manifest": "^2.0.8",
"gatsby-plugin-nprogress": "^2.1.19",
"gatsby-plugin-offline": "^3.0.34",
"gatsby-plugin-react-helmet": "^3.1.22",
"gatsby-plugin-sharp": "^2.4.5",
"gatsby-plugin-sitemap": "^2.2.27",
"gatsby-plugin-styled-components": "^3.1.19",
"gatsby-plugin-twitter": "^2.1.19",
"gatsby-remark-autolink-headers": "^2.1.24",
"gatsby-remark-component": "^1.1.3",
"gatsby-remark-copy-linked-files": "^2.1.37",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "^2.0.6",
"gatsby-remark-prismjs": "^3.3.31",
"gatsby-remark-responsive-iframe": "^2.2.32",
"gatsby-source-filesystem": "^2.1.48",
"gatsby-transformer-json": "^2.2.26",
"gatsby-transformer-remark": "^2.6.50",
"lodash": "^4.17.15",
"lodash-webpack-plugin": "^0.11.4",
"normalize.css": "^8.0.0",
"prismjs": "^1.27.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-ga": "^2.5.6",
"react-helmet": "^5.2.1",
"react-hubspot-form": "^1.3.6",
"react-icons": "^2.2.7",
"react-twitter-widgets": "^1.4.0",
"styled-components": "^2.2.3",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@aws-cdk/aws-certificatemanager": "^1.134.0",
"@aws-cdk/aws-cloudfront": "^1.134.0",
"@aws-cdk/aws-cloudwatch": "^1.134.0",
"@aws-cdk/aws-route53": "^1.134.0",
"@aws-cdk/aws-route53-targets": "^1.134.0",
"@aws-cdk/aws-s3": "^1.134.0",
"@aws-cdk/aws-s3-deployment": "^1.134.0",
"@aws-cdk/core": "^1.133.0",
"aws-cdk": "^1.133.0",
"babel-eslint": "^10.0.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"cli-glob": "^0.1.0",
"eslint": "^6.8.0",
"eslint-config-react-app": "^5.2.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"express": "^4.17.3",
"prettier": "^1.19.1",
"write-good": "^0.11.3"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"develop": "gatsby develop",
"serve": "gatsby serve",
"build": "gatsby build",
"clean": "rm -rf public && rm -rf .cache",
"lint:js": "eslint src/ -f stylish",
"lint": "npm run lint:js",
"write-good": "write-good $(glob 'content/**/*.md')",
"format:js": "prettier '**/*.js' --write",
"format:md": "prettier 'content/**/*.md' --write",
"format": "npm run format:js && npm run format:md",
"cdk:deploy": "cdk deploy --require-approval never",
"cdk:bootstrap": "cdk bootstrap"
}
}