This repository has been archived by the owner on Mar 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
124 lines (124 loc) · 3.94 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
{
"name": "gatsby-starter-default",
"private": true,
"description": "A simple starter to get up and developing quickly with Gatsby",
"version": "0.1.0",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"dependencies": {
"@juggle/resize-observer": "^3.0.2",
"@use-it/interval": "^0.1.3",
"@xstate/inspect": "^0.1.1",
"@xstate/react": "^1.0.1",
"body-scroll-lock": "^3.1.5",
"date-fns": "^2.14.0",
"fast-levenshtein": "^2.0.6",
"fetch-ponyfill": "^6.1.0",
"gatsby": "^2.19.7",
"gatsby-image": "^2.2.39",
"gatsby-plugin-lodash": "^3.3.2",
"gatsby-plugin-manifest": "^2.2.39",
"gatsby-plugin-no-sourcemaps": "^2.2.0",
"gatsby-plugin-offline": "^3.0.32",
"gatsby-plugin-react-helmet": "^3.1.21",
"gatsby-plugin-sharp": "^2.4.3",
"gatsby-plugin-typescript": "^2.1.26",
"gatsby-source-filesystem": "^2.1.46",
"gatsby-transformer-sharp": "^2.3.13",
"i18next": "^19.4.5",
"memoizee": "^0.4.14",
"miragejs": "^0.1.41",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-dropdown-aria": "^1.5.1",
"react-helmet": "^5.2.1",
"react-i18next": "^11.5.0",
"react-loadable": "^5.5.0",
"react-spring": "^8.0.27",
"react-toastify": "^6.0.9",
"react-use-measure": "^2.0.0",
"reactour": "^1.18.0",
"styled-components": "^5.2.0",
"typescript": "^3.7.5",
"xstate": "^4.13.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^2.0.5",
"@testing-library/cypress": "^7.0.2",
"@testing-library/jest-dom": "^5.1.0",
"@testing-library/react": "^9.4.0",
"@types/jest": "^25.1.1",
"@types/lodash": "^4.14.150",
"@types/memoizee": "^0.4.4",
"@types/node": "^13.5.2",
"@types/reach__router": "^1.3.5",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-helmet": "^5.0.15",
"@types/smooth-scroll": "^16.1.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"babel-jest": "^25.1.0",
"babel-preset-gatsby": "^0.2.27",
"cypress": "^6.0.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"gatsby-plugin-postcss": "^2.1.19",
"gatsby-plugin-react-axe": "^0.3.0",
"gatsby-plugin-react-svg": "^3.0.0",
"husky": "^4.2.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"react-test-renderer": "^16.12.0",
"start-server-and-test": "^1.11.6",
"tailwindcss": "1.4.5",
"wicg-inert": "^3.0.3"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve --port=8000",
"clean": "gatsby clean",
"lint": "eslint --ignore-path .gitignore ./src --ext ts --ext tsx --ext js --ext jsx",
"test": "jest",
"coverage": "jest --coverage",
"tsc": "tsc",
"cypress:ci": "./node_modules/.bin/cypress run",
"cypress:open": "./node_modules/.bin/cypress open",
"pretest:integration:ci": "yarn run build",
"test:integration:ci": "start-server-and-test serve http://localhost:9000 cypress:ci",
"test:integration:open": "start-server-and-test start http://localhost:8000 cypress:open"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"npm run lint -- --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
}
}