forked from aws-amplify/learn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.58 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
{
"name": "aws-amplify-site",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"dependencies": {
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.11",
"@rehooks/component-size": "^1.0.2",
"@rooks/use-boundingclientrect": "^3.0.1",
"aws-amplify": "^3.0.7",
"babel-plugin-ramda": "^2.0.0",
"cypress": "^3.2.0",
"gatsby": "^2.20.14",
"gatsby-image": "^2.0.37",
"moment": "^2.24.0",
"prismjs": "^1.21.0",
"ramda": "^0.26.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-flatpickr": "^3.7.1",
"react-helmet": "^5.2.1",
"react-icons": "^3.5.0",
"react-lazyload": "^2.6.2",
"react-moment": "^0.8.4",
"react-select": "^2.4.3",
"react-slick": "^0.24.0",
"react-sticky": "^6.0.3",
"react-sticky-box": "^0.8.0",
"react-toastify": "^5.1.0",
"react-use": "^8.3.1",
"shortid": "^2.2.14"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/register": "^7.5.5",
"aws-sdk": "^2.494.0",
"axios": "^0.19.0",
"babel-jest": "^24.8.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-react-require": "^3.1.1",
"babel-preset-gatsby": "^0.1.11",
"babel-preset-react-app": "^9.0.0",
"case": "^1.6.1",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "2.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-import-resolver-babel-module": "^5.0.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"gatsby-plugin-emotion": "^4.0.6",
"gatsby-plugin-favicon": "^3.1.6",
"gatsby-plugin-manifest": "^2.0.26",
"gatsby-plugin-module-resolver": "^1.0.3",
"gatsby-plugin-offline": "^2.0.25",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-sharp": "^2.0.32",
"gatsby-plugin-twitter": "^2.0.13",
"gatsby-plugin-webpack-bundle-analyzer": "^1.0.5",
"gatsby-remark-copy-linked-files": "^2.0.11",
"gatsby-remark-embed-gist": "^1.1.7",
"gatsby-remark-embed-video": "^1.7.1",
"gatsby-remark-images": "^3.0.10",
"gatsby-remark-prismjs": "^3.2.6",
"gatsby-remark-responsive-iframe": "^2.1.1",
"gatsby-remark-smartypants": "^2.0.9",
"gatsby-source-filesystem": "^2.0.28",
"gatsby-transformer-remark": "^2.3.8",
"gatsby-transformer-sharp": "^2.1.17",
"glob": "^7.1.3",
"gluegun": "^3.2.2",
"gray-matter": "^4.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"markdownlint-cli": "^0.15.0",
"open-graph-scraper": "^3.6.1",
"parse5": "^5.1.0",
"react-html-email": "^3.0.0",
"react-test-renderer": "^16.8.6",
"start-server-and-test": "^1.9.0",
"yup": "^0.27.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"delete-cache": "rm -rf .cache",
"clean": "yarn delete-cache -- node_modules && yarn",
"contribute": "scripts/contribute/cli.js",
"validate-content": "markdownlint content/**/* && scripts/validations.js",
"prep": "yarn delete-cache && scripts/gather-credentials.js",
"start": "yarn prep && gatsby develop",
"build": "yarn prep && gatsby build --prefix-paths",
"serve": "gatsby serve",
"cy:dev": "cypress open --config baseUrl=http://localhost:8000",
"cy:ci": "cypress run --config baseUrl=http://localhost:9000",
"test:dev": "start-server-and-test start http://localhost:8000 cy:dev",
"test:ci": "start-server-and-test serve http://localhost:9000 cy:ci",
"commit": "git add . && git-cz && git secrets --scan-history"
}
}