This repository has been archived by the owner on Apr 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.04 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
{
"name": "vidhub",
"private": true,
"description": "A simple video sharing site for friends.",
"version": "0.1.0",
"author": "https://github.com/ahtee",
"dependencies": {
"@emotion/core": "^10.0.21",
"@emotion/styled": "^10.0.17",
"@reach/router": "^1.2.1",
"@types/node": "^12.7.11",
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.1",
"auth0-js": "^9.11.3",
"gatsby": "^2.15.29",
"gatsby-image": "^2.2.24",
"gatsby-plugin-emotion": "^4.1.9",
"gatsby-plugin-manifest": "^2.2.20",
"gatsby-plugin-offline": "^3.0.11",
"gatsby-plugin-react-helmet": "^3.1.10",
"gatsby-plugin-s3": "^0.3.2",
"gatsby-plugin-sharp": "^2.2.28",
"gatsby-plugin-typescript": "^2.1.11",
"gatsby-source-filesystem": "^2.1.29",
"gatsby-transformer-sharp": "^2.2.20",
"lint-staged": "^9.4.1",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-helmet": "^5.2.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"prettier": "^1.18.2",
"typescript": "^3.6.3"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \"",
"lint": "eslint --ignore-path .gitignore . --ext ts --ext tsx --ext js --ext jsx",
"lint:fix": "yarn lint --fix"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
"*.ts": [
"prettier --parser=typescript --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}