-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 3.63 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
{
"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 <[email protected]>",
"dependencies": {
"@dicebear/avatars": "^4.10.1",
"@dicebear/avatars-jdenticon-sprites": "^4.10.1",
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"firebase": "^9.6.0",
"firebase-admin": "^10.0.0",
"gatsby": "^4.25.8",
"gatsby-image": "^2.11.0",
"gatsby-plugin-emotion": "^7.3.0",
"gatsby-plugin-manifest": "^4.3.0",
"gatsby-plugin-offline": "^5.3.0",
"gatsby-plugin-react-helmet": "^5.3.0",
"gatsby-plugin-sharp": "^4.3.0",
"gatsby-plugin-typescript": "^4.3.0",
"gatsby-source-filesystem": "^4.3.0",
"gatsby-transformer-sharp": "^4.3.0",
"i18next": "^21.6.0",
"i18next-browser-languagedetector": "^6.1.2",
"md5": "^2.3.0",
"process": "^0.11.10",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-i18next": "^11.14.3",
"react-icons": "^4.3.1",
"react-popover": "^0.5.10",
"react-select": "^5.2.1",
"react-spring": "^9.3.2",
"resize-observer-polyfill": "^1.5.1",
"smoothscroll-polyfill": "^0.4.4",
"typescript": "^4.5.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@emotion/eslint-plugin": "^11.7.0",
"@emotion/jest": "^11.6.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.3",
"@types/md5": "^2.3.1",
"@types/node": "^16.11.12",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/react-helmet": "^6.1.4",
"@types/react-popover": "^0.5.4",
"@types/react-test-renderer": "^17.0.1",
"@types/testing-library__react": "^10.2.0",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"babel-jest": "^27.4.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"gatsby-plugin-robots-txt": "^1.6.14",
"gatsby-plugin-sitemap": "^5.3.0",
"glob": "^7.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.3",
"jest-watch-typeahead": "^1.0.0",
"node-html-parser": "^5.1.0",
"path-browserify": "^1.0.1",
"plop": "^2.7.6",
"prettier": "^2.5.1",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.1.1",
"ts-node": "^10.4.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "NODE_OPTIONS=--max_old_space_size=4096 GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build && cp _headers public/ && cp _redirects public/",
"develop": "DEV_SSR=false gatsby develop",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"lint": "eslint . --ext .ts,.tsx --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"plop": "plop",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "jest --ci --passWithNoTests",
"test:integration": "jest --ci --passWithNoTests --config ./jest.config.integration.js",
"test:integration:watch": "npm run test:integration -- --watch",
"test:coverage": "npm run test -- --coverage",
"test:watch": "npm run test -- --watch",
"type-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}