-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.45 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
{
"name": "gatsby-typescript-default-starter",
"version": "1.0.0",
"description": "The default gatsby starter with typescript & latest package",
"author": "Danang Eko Alfianto <github.com/danangekal>",
"homepage": "https://github.com/danangekal/gatsby-typescript-default-starter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/danangekal/gatsby-typescript-default-starter.git"
},
"bugs": {
"url": "https://github.com/danangekal/gatsby-typescript-default-starter/issues"
},
"license": "MIT",
"keywords": [
"gatsby",
"reactjs",
"typescript",
"eslint",
"prettier",
"husky",
"lint-staged",
"pwa",
"seo"
],
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(js|ts|tsx)\" --quiet --fix",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(js|ts|tsx|css|scss|json|md|html)\" --write",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 0",
"prepare": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"gatsby": "^3.1.2",
"gatsby-plugin-gatsby-cloud": "^2.1.0",
"gatsby-plugin-image": "^1.1.2",
"gatsby-plugin-manifest": "^3.1.0",
"gatsby-plugin-offline": "^4.1.0",
"gatsby-plugin-react-helmet": "^4.1.0",
"gatsby-plugin-sharp": "^3.1.2",
"gatsby-source-filesystem": "^3.1.0",
"gatsby-transformer-sharp": "^3.1.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@types/node": "^14.14.36",
"@types/prop-types": "^15.7.3",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-helmet": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^5.2.0",
"lint-staged": "^10.5.4",
"pinst": "^2.1.6",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
},
"engines": {
"node": ">=12.13.0"
}
}