-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 4.19 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "rdc-study",
"description": "rdc-study project",
"version": "1.10.0",
"author": "Aristote Diasonama <thefuture2092@gmail.com>",
"keywords": [
"rdc-study"
],
"main": "gatsby-browser.js",
"license": "rdc-study",
"engines": {
"node": "^13.13.0",
"npm": "^6.14"
},
"scripts": {
"build": "gatsby build",
"build-with-bundle-analyzer": "WITH_BUNDLE_ANALYZER=true gatsby build",
"deploy-qa": "gatsby build && surge public/ $SURGE_DOMAIN",
"start": "SHOW_DRAFT=true gatsby develop",
"develop": "SHOW_DRAF=true gatsby clean && gatsby develop",
"format": "prettier --write 'src/**/*.js'",
"lint": "./node_modules/.bin/stylelint './src/**/*.scss' && ./node_modules/.bin/eslint './src/**/*.js'",
"prettier": "prettier --write 'src/**/*.{js,json,scss,md}'",
"test": "jest",
"newsletter-subscriber-count": "aws dynamodb scan --table-name newsletter-subscriptions --select \"COUNT\"",
"update-contact-email-template": "aws ses update-template --cli-input-json file://aws/contact-form-email-template.json --region=us-east-1",
"update-newsletter-email-template": "aws ses update-template --cli-input-json file://aws/newsletter-operation-failed-email-template.json --region=us-east-1"
},
"lint-staged": {
"*.{js,json,scss,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"axios": "^0.27.2",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"formik": "^2.2.9",
"gatsby": "^2.32.13",
"gatsby-image": "^3.11.0",
"gatsby-plugin-catch-links": "^2.10.0",
"gatsby-plugin-feed": "^2.13.1",
"gatsby-plugin-google-tagmanager": "^2.11.0",
"gatsby-plugin-html-attributes": "^1.0.5",
"gatsby-plugin-manifest": "3.10.0",
"gatsby-plugin-netlify": "^2.11.1",
"gatsby-plugin-netlify-cache": "^2.0.0",
"gatsby-plugin-netlify-cms": "^4.10.1",
"gatsby-plugin-netlify-cms-paths": "^1.3.0",
"gatsby-plugin-offline": "^5.22.0",
"gatsby-plugin-postcss": "^2.3.13",
"gatsby-plugin-react-helmet": "^3.10.0",
"gatsby-plugin-remove-trailing-slashes": "^2.10.0",
"gatsby-plugin-sass": "^2.8.0",
"gatsby-plugin-sentry": "^1.0.1",
"gatsby-plugin-sharp": "^2.14.4",
"gatsby-plugin-sitemap": "^2.12.0",
"gatsby-plugin-use-query-params": "^1.0.1",
"gatsby-plugin-webpack-bundle-analyzer": "^1.0.5",
"gatsby-react-router-scroll": "^3.7.0",
"gatsby-remark-copy-linked-files": "^2.10.0",
"gatsby-remark-images": "^3.11.1",
"gatsby-remark-prismjs": "^3.13.0",
"gatsby-remark-smartypants": "^2.10.0",
"gatsby-source-filesystem": "^2.11.1",
"gatsby-transformer-json": "^2.11.0",
"gatsby-transformer-remark": "^2.16.1",
"gatsby-transformer-sharp": "^2.12.1",
"lodash": "^4.17.21",
"netlify-cms-app": "^2.15.72",
"node-sass": "^4.14.1",
"postcss-browser-reporter": "^0.6.0",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.7.1",
"postcss-reporter": "^6.0.1",
"prismjs": "^1.29.0",
"react": "^16.13.1",
"react-click-outside": "^3.0.1",
"react-dom": "^16.13.0",
"react-helmet": "^6.1.0",
"react-intl": "^6.2.1",
"react-transition-group": "^4.4.2",
"recoil": "0.7.6",
"s3-deploy": "^1.4.0",
"sass-loader": "^10.1.1",
"sass-resources-loader": "^2.2.5",
"sharethis-reactjs": "^1.6.0",
"use-query-params": "^1.2.3",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^26.7.0",
"eslint-plugin-mirego": "1.0.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.31.8",
"husky": "^8.0.1",
"jest": "^29.2.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"stylelint": "^14.14.0",
"stylelint-mirego": "^0.2.5",
"stylelint-order": "^5.0.0",
"typescript": "^4.8.4"
},
"browserslist": [
"> 1%",
"> 1% in CD",
"IE >= 9",
"last 2 versions"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}