-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.38 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
{
"name": "monitor-books",
"version": "0.1.1",
"private": false,
"license": "MIT",
"homepage": ".",
"scripts": {
"start": "gatsby develop",
"build": "gatsby build",
"functions": "cd functions && npm i && cd ..",
"dev": "netlify dev",
"typecheck": "./node_modules/typescript/bin/tsc --noEmit --skipLibCheck",
"ci-unit-tests": "react-scripts test --watchAll=false --env=jest-environment-jsdom-sixteen",
"cypress": "npx cypress run",
"ci": "start-server-and-test 'yarn dev' http://127.0.0.1:8888/books 'yarn cypress'",
"eject": "react-scripts eject"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@portabletext/react": "^2.0.0",
"@sanity/client": "^5.2.1",
"@sanity/image-url": "^1.0.2",
"@sentry/gatsby": "^6.7.2",
"@stripe/stripe-js": "^1.13.2",
"@testing-library/cypress": "^7.0.6",
"@testing-library/user-event": "13.1.5",
"dotenv": "^16.4.5",
"gatsby": "^4.25.7",
"gatsby-plugin-emotion": "^7.17.0",
"gatsby-plugin-image": "^2.16.1",
"gatsby-plugin-manifest": "^2.12.0",
"gatsby-plugin-netlify": "^5.1.0",
"gatsby-plugin-react-helmet": "^5.16.0",
"gatsby-plugin-sharp": "^4.25.1",
"gatsby-plugin-typescript": "^4.16.0",
"gatsby-source-cloudinary": "^0.1.14",
"gatsby-source-filesystem": "^4.16.0",
"gatsby-source-sanity": "^7.6.0",
"gatsby-source-strapi": "^1.0.2",
"gatsby-transformer-sharp": "^4.16.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-markdown": "^5.0.3",
"react-native-fast-image": "^8.3.0",
"react-spring": "^9.1.2",
"reset-css": "^5.0.1",
"sharp": "^0.30.6",
"stripe": "^8.144.0"
},
"devDependencies": {
"@cypress/webpack-dev-server": "^1.4.0",
"@percy/cli": "1.29.1",
"@percy/cypress": "^3.1.0",
"@testing-library/cypress": "^7.0.6",
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/react": "^11.2.6",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"@types/reach__router": "^1.3.5",
"@types/react": "^17.0.3",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.1.1",
"@types/styled-components": "^5.1.9",
"@types/testing-library__cypress": "^5.0.8",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"cypress": "7.2.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^6.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.23.2",
"jest-environment-jsdom-sixteen": "^1.0.3",
"netlify-cli": "17.33.4",
"netlify-plugin-cypress": "^1.3.11",
"start-server-and-test": "^1.12.1",
"typescript": "^4.2.4"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:cypress/recommended"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}