-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
121 lines (121 loc) · 3.74 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
{
"name": "gatsby-starter-netlify-cms",
"description": "Example Gatsby, and Netlify CMS project",
"version": "1.1.3",
"author": "Austin Green",
"dependencies": {
"@apollo/react-hooks": "^4.0.0",
"@debtcollective/dc-header-component": "^4.0.0",
"@hookform/resolvers": "1.0.0",
"algolia-places-react": "1.6.0",
"amplitude-js": "^7.0.0",
"apollo-boost": "^0.4.4",
"bootstrap": "^4.3.1",
"classnames": "^2.2.6",
"dayjs": "^1.8.17",
"details-polyfill": "^1.1.0",
"gatsby": "^2.13.31",
"gatsby-image": "^2.0.23",
"gatsby-plugin-create-client-paths": "^2.1.17",
"gatsby-plugin-flow": "^1.1.14",
"gatsby-plugin-fullstory": "2.3.14",
"gatsby-plugin-google-analytics": "^2.1.31",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-netlify": "^2.0.6",
"gatsby-plugin-netlify-cms": "^4.1.6",
"gatsby-plugin-purgecss": "^5.0.0",
"gatsby-plugin-react-helmet": "^3.0.4",
"gatsby-plugin-sass": "^2.0.7",
"gatsby-plugin-sentry": "1.0.1",
"gatsby-plugin-sharp": "^2.2.9",
"gatsby-remark-copy-linked-files": "^2.0.7",
"gatsby-remark-images": "^3.1.6",
"gatsby-remark-relative-images": "^0.3.0",
"gatsby-source-filesystem": "^2.0.26",
"gatsby-source-graphql": "^2.1.31",
"gatsby-transformer-remark": "^2.6.9",
"gatsby-transformer-sharp": "^2.1.9",
"isomorphic-fetch": "3.0.0",
"jquery": "^3.4.1",
"lodash": "^4.17.15",
"lodash-webpack-plugin": "^0.11.4",
"markdown-to-jsx": "^7.0.0",
"netlify-cms-app": "^2.13.2",
"netlify-cms-media-library-cloudinary": "^1.3.2",
"netlify-cms-media-library-uploadcare": "^0.5.2",
"node-sass": "^4.11.0",
"parcel-bundler": "^1.9.4",
"prop-types": "^15.6.0",
"react": "^17.0.0",
"react-bootstrap": "^1.0.0-beta.14",
"react-dom": "^17.0.0",
"react-helmet": "^6.0.0",
"react-hook-form": "6.10.1",
"react-jsonschema-form": "2.0.0-alpha.1",
"react-number-format": "4.4.1",
"react-scroll": "1.8.1",
"uuid": "^8.0.0",
"yup": "0.29.3"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"clean": "gatsby clean",
"start:app": "npm run develop",
"start": "run-p start:**",
"build:app": "npm run clean && gatsby build",
"build": "run-p build:**",
"develop": "npm run clean && gatsby develop",
"serve": "gatsby serve",
"lint": "eslint '**/*.js' --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --coverage"
},
"devDependencies": {
"@apollo/react-testing": "^4.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.7.4",
"@testing-library/jest-dom": "^5.0.0",
"@testing-library/react": "^11.0.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^26.0.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-gatsby": "^0.5.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-flowtype": "^5.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^4.0.0",
"eslint-plugin-standard": "^4.0.1",
"faker": "^5.0.0",
"http-proxy-middleware": "1.0.6",
"husky": "^4.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.0",
"lint-staged": "^10.0.0",
"netlify-lambda": "^2.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"react-test-renderer": "^17.0.0"
},
"husky": {
"hooks": {
"pre-push": "yarn test",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}