-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.51 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
{
"name": "gatsby-starter-contentful-multi-locale",
"description": "A simple starter to get up and developing quickly with Gatsby",
"version": "0.1.0",
"author": "Jose Guerrero",
"keywords": [
"gatsby",
"gatsby-starter"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "eslint 'src/**/*.{js,ts,tsx,jsx}'",
"lint:fix": "eslint 'src/**/*.{js,ts,tsx,jsx}' --fix",
"type-checking": "tsc --noEmit",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"postinstall": "node ./bin/hello.js",
"setup": "node ./bin/setup.js",
"cleanup-contentful-setup": "node ./bin/cleanup.js"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^14.1.1",
"gatsby": "^2.23.11",
"gatsby-image": "^2.4.9",
"gatsby-plugin-graphql-codegen": "^2.7.1",
"gatsby-plugin-manifest": "^2.4.14",
"gatsby-plugin-offline": "^3.2.13",
"gatsby-plugin-react-helmet": "^3.3.6",
"gatsby-plugin-sharp": "^2.6.14",
"gatsby-plugin-styled-components": "^3.3.9",
"gatsby-plugin-typescript": "^2.4.8",
"gatsby-source-contentful": "^2.3.22",
"gatsby-source-contentful-locales": "^1.0.3",
"gatsby-source-filesystem": "^2.3.14",
"gatsby-transformer-sharp": "^2.5.7",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0",
"react-select": "^3.1.0",
"styled-components": "^5.1.1",
"styled-normalize": "^8.0.7"
},
"devDependencies": {
"@types/react-helmet": "^6.0.0",
"@types/react-select": "^3.0.14",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"babel-plugin-const-enum": "^1.0.1",
"babel-plugin-styled-components": "^1.10.7",
"chalk": "^4.1.0",
"contentful-import": "^7.9.1",
"dotenv": "^8.2.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"inquirer": "^7.3.2",
"prettier": "2.0.5",
"typescript": "^3.9.6",
"yargs-parser": "^18.1.3"
}
}