forked from kadhirash/gatsby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.14 KB
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
{
"name": "using-jest",
"description": "An example repository demonstrating unit testing a Gatsby application with Jest",
"version": "1.0.0",
"author": "Dustin Schau <dustin@gatsbyjs.com>",
"dependencies": {
"gatsby": "^4.22.0",
"gatsby-image": "^2.4.19",
"gatsby-plugin-manifest": "^2.4.30",
"gatsby-plugin-offline": "^2.2.10",
"gatsby-plugin-react-helmet": "^3.3.11",
"gatsby-plugin-sharp": "^2.6.36",
"gatsby-source-filesystem": "^2.3.30",
"gatsby-transformer-sharp": "^2.5.15",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-helmet": "^5.2.1"
},
"keywords": [
"gatsby",
"jest",
"test",
"testing"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "npm run develop",
"test": "jest"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"babel-jest": "^24.9.0",
"babel-preset-gatsby": "^0.5.10",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby"
}
}