-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.05 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
{
"name": "gatsby-template",
"private": true,
"description": "Starter template for Gatsby",
"version": "0.1.0",
"keywords": [
"gatsby"
],
"author": "Paul Corbett",
"repository": {
"type": "git",
"url": "https://github.com/corbpaul/gatsby-template"
},
"bugs": {
"url": "https://github.com/corbpaul/gatsby-template/issues"
},
"license": "MIT",
"scripts": {
"build": "gatsby build",
"cy:open": "cypress open",
"cy:run": "cypress run",
"develop": "gatsby develop",
"start": "yarn develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "yarn test:static && yarn test:coverage && yarn test:e2e:ci",
"test:coverage": "jest --collectCoverageFrom=src/**/*.{ts,tsx}",
"test:e2e:ci": "start-server-and-test develop http://localhost:8000 cy:run",
"test:e2e": "START_SERVER_AND_TEST_INSECURE=1 start-server-and-test develop http://localhost:8000 cy:open",
"test:integration": "jest --group=integration",
"test:lint": "eslint .",
"test:static": "yarn test:lint && yarn test:types",
"test:types": "type-coverage && typescript-coverage-report",
"test:unit": "jest --group=unit",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"gatsby": "^2.26.1",
"gatsby-image": "^2.5.0",
"gatsby-plugin-manifest": "^2.6.1",
"gatsby-plugin-offline": "^3.4.0",
"gatsby-plugin-react-helmet": "^3.4.0",
"gatsby-plugin-sharp": "^2.8.0",
"gatsby-source-filesystem": "^2.5.0",
"gatsby-transformer-json": "^2.9.0",
"gatsby-transformer-sharp": "^2.6.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@storybook/addon-a11y": "^6.1.14",
"@storybook/addon-actions": "^6.1.14",
"@storybook/addon-essentials": "^6.1.14",
"@storybook/addon-links": "^6.1.14",
"@storybook/react": "^6.1.14",
"@testing-library/cypress": "^7.0.3",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"@types/jest-axe": "^3.5.1",
"@types/react-helmet": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"cypress": "^6.2.1",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-react": "^7.22.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-axe": "^4.1.0",
"jest-docblock": "^26.0.0",
"jest-runner": "^26.6.3",
"jest-runner-groups": "^2.0.1",
"prettier": "2.2.1",
"start-server-and-test": "^1.11.7",
"storybook-mobile": "^0.1.29",
"type-coverage": "^2.14.9",
"typescript": "^4.1.3",
"typescript-coverage-report": "^0.4.0"
},
"typeCoverage": {
"atLeast": 100,
"ignoreFiles": [
"__mocks__/*",
"cypress/**/*",
"src/**/*.stories.*",
"src/**/*.test.*",
"tests/**/*"
]
}
}