forked from kentcdodds/old-kentcdodds.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 4.39 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
126
127
128
129
130
131
132
{
"name": "kentcdodds.com",
"private": true,
"description": "Kent's personal website",
"version": "1.0.1",
"author": "Kent C. Dodds <[email protected]> (https://kentcdodds.com)",
"repository": "https://github.com/kentcdodds/kentcdodds.com",
"dependencies": {
"@emotion/core": "^10.0.5",
"@emotion/styled": "^10.0.5",
"@mdx-js/mdx": "^1.0.2",
"@mdx-js/react": "^1.0.2",
"@sindresorhus/slugify": "^0.8.0",
"axios": "^0.18.0",
"core-js": "^2.6.1",
"dotenv": "^7.0.0",
"dotenv-parse-variables": "^0.2.0",
"emotion": "^10.0.5",
"emotion-server": "^10.0.5",
"emotion-theming": "^10.0.6",
"formik": "^1.4.2",
"gatsby": "2.1.9",
"gatsby-image": "^2.0.31",
"gatsby-link": "^2.0.14",
"gatsby-mdx": "^0.6.1",
"gatsby-plugin-catch-links": "^2.0.12",
"gatsby-plugin-emotion": "^4.0.4",
"gatsby-plugin-feed": "^2.0.14",
"gatsby-plugin-google-analytics": "^2.0.16",
"gatsby-plugin-manifest": "^2.0.22",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-netlify-cache": "^1.1.0",
"gatsby-plugin-offline": "^2.0.23",
"gatsby-plugin-react-helmet": "^3.0.8",
"gatsby-plugin-sharp": "^2.0.25",
"gatsby-plugin-twitter": "^2.0.11",
"gatsby-plugin-typography": "^2.2.8",
"gatsby-remark-copy-linked-files": "^2.0.9",
"gatsby-remark-images": "^3.0.6",
"gatsby-remark-prismjs": "^3.2.0",
"gatsby-source-filesystem": "^2.0.12",
"gatsby-transformer-remark": "^2.3.1",
"gatsby-transformer-sharp": "^2.1.10",
"lodash": "^4.17.11",
"nodemailer": "^5.1.1",
"ow": "^0.12.0",
"polished": "^3.0.3",
"prism-react-renderer": "^0.1.6",
"prism-themes": "^1.0.1",
"prismjs": "^1.15.0",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-countdown-now": "^2.1.0",
"react-dom": "^16.8.4",
"react-helmet": "~5.2.0",
"react-live": "^1.12.0",
"react-markdown": "^4.0.6",
"react-share": "^2.4.0",
"react-typography": "^0.16.19",
"rehype-document": "^3.0.0",
"rehype-format": "^2.3.1",
"rehype-raw": "^4.0.0",
"rehype-stringify": "^5.0.0",
"remark": "^10.0.1",
"remark-parse": "^6.0.3",
"remark-rehype": "^4.0.0",
"strip-indent": "^2.0.0",
"strip-markdown": "^3.0.3",
"styled-components": "^4.1.3",
"typography": "^0.16.19",
"unified": "^7.1.0",
"yup": "^0.26.7"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"babel-jest": "^24.3.1",
"babel-preset-gatsby": "^0.1.8",
"cypress": "^3.1.5",
"cypress-testing-library": "^2.3.6",
"dotenv-cli": "^1.4.0",
"eslint": "^5.15.1",
"eslint-config-kentcdodds": "^14.3.1",
"eslint-plugin-cypress": "^2.2.1",
"eslint-plugin-jest": "^22.3.0",
"husky": "^1.3.1",
"identity-obj-proxy": "^3.0.0",
"is-ci-cli": "^1.1.1",
"jest": "^24.3.1",
"jest-in-case": "^1.0.2",
"lint-staged": "^8.1.5",
"netlify-lambda": "^1.4.2",
"npm-run-all": "^4.1.5",
"prettier": "1.16.4",
"react-testing-library": "^6.0.0",
"start-server-and-test": "^1.7.11",
"unist-util-visit": "^1.4.0"
},
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop",
"start": "gatsby serve --port 5020",
"setup": "yarn && yarn validate",
"netlify": "npm-run-all --parallel functions:build lint test netlify:cypress",
"functions:build": "netlify-lambda build netlify/functions",
"functions:dev": "dotenv -e ./netlify/.env netlify-lambda serve netlify/functions",
"netlify:cypress": "npm-run-all --parallel install:cypress build && yarn test:e2e",
"install:cypress": "cypress install",
"build-and-test": "yarn build && yarn test:e2e",
"validate": "npm-run-all --parallel lint test build-and-test",
"lint": "eslint .",
"format": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|graphql|mdx)\"",
"cy": "is-ci \"test:e2e\" \"cy:open\"",
"cy:open": "cypress open",
"cy:run": "CYPRESS_BASE_URL=http://localhost:5020 cypress run",
"test:e2e": "start-server-and-test start http://localhost:5020 cy:run",
"test": "is-ci \"test:coverage\" \"test:watch\"",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": [
">1%",
"not dead"
]
}