-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.21 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
{
"name": "gatsby-starter-typescript",
"private": true,
"description": "A TypeScript version starter to get up and developing quickly with Gatsby",
"version": "1.0.0",
"author": "Wataru Oguchi <[email protected]>",
"dependencies": {
"@contentful/rich-text-react-renderer": "^13.4.0",
"@contentful/rich-text-types": "^14.1.1",
"@mdi/js": "^5.6.55",
"@types/react": "^16.9.35",
"@types/react-helmet": "^6.0.0",
"bulma": "^0.9.1",
"dotenv": "^8.2.0",
"gatsby": "^2.21.33",
"gatsby-cli": "^2.12.103",
"gatsby-image": "^2.4.5",
"gatsby-plugin-graphql-codegen": "^2.2.3",
"gatsby-plugin-manifest": "^2.2.21",
"gatsby-plugin-offline": "^3.2.7",
"gatsby-plugin-react-helmet": "^3.3.2",
"gatsby-plugin-sharp": "^2.2.29",
"gatsby-plugin-typescript": "^2.4.3",
"gatsby-source-contentful": "^2.1.50",
"gatsby-source-filesystem": "^2.3.14",
"gatsby-transformer-sharp": "^2.5.3",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.0",
"react-helmet": "^5.2.1",
"typescript": "^3.9.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.3.3",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.7",
"prettier": "^2.0.5",
"stylelint": "^11.1.1",
"stylelint-config-standard": "^20.0.0"
},
"keywords": [
"gatsby",
"TypeScript",
"Template",
"husky",
"lint-staged",
"stylelint",
"prettier"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "npm run type-check && echo \"Write tests! -> https://gatsby.dev/unit-testing \"",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "npm run lint --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}