This repository has been archived by the owner on Nov 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
85 lines (85 loc) · 2.43 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
{
"name": "juliette.sh",
"description": "juliette.sh",
"version": "0.1.0",
"author": "Juliette Pretot",
"dependencies": {
"@types/node": "^14.0.5",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.0.0",
"@types/styled-components": "^5.1.0",
"gatsby": "^2.22.11",
"gatsby-image": "^2.4.5",
"gatsby-plugin-catch-links": "^2.3.3",
"gatsby-plugin-netlify": "^2.3.3",
"gatsby-plugin-netlify-cache": "^1.2.0",
"gatsby-plugin-nprogress": "^2.3.2",
"gatsby-plugin-offline": "^3.2.7",
"gatsby-plugin-preact": "^4.0.0",
"gatsby-plugin-react-helmet": "^3.3.2",
"gatsby-plugin-sharp": "^2.6.9",
"gatsby-plugin-sitemap": "^2.4.3",
"gatsby-plugin-styled-components": "^3.3.2",
"gatsby-plugin-typescript": "^2.4.3",
"gatsby-remark-copy-linked-files": "^2.3.3",
"gatsby-remark-images": "^3.3.8",
"gatsby-remark-smartypants": "^2.3.2",
"gatsby-source-filesystem": "^2.3.8",
"gatsby-transformer-remark": "^2.8.13",
"gatsby-transformer-sharp": "^2.5.3",
"gatsby-transformer-sqip": "^2.3.9",
"preact": "^10.4.4",
"preact-render-to-string": "^5.1.8",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"styled-components": "^5.1.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"start": "gatsby develop",
"build": "gatsby build",
"lint": "tslint --fix 'src/**/*.{ts,tsx}' -p tsconfig.json && tsc",
"type-check": "tsc --project tsconfig.json --noEmit"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run type-check",
"pre-write": "lint-staged && npm run type-check"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"git add",
"tslint --fix -p tsconfig.json",
"git add"
],
"*.{graphql,json,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"babel-plugin-root-import": "^6.5.0",
"babel-plugin-styled-components": "^1.10.7",
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.10",
"husky": "^4.2.5",
"lint-staged": "^10.2.6",
"prettier": "^2.0.5",
"tslint": "^6.1.2",
"tslint-config-blvd": "^1.2.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^3.9.3"
},
"browserslist": "> 1% in US",
"engines": {
"node": ">=12.16.3"
}
}