-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.62 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
{
"name": "claimr-website",
"description": "ClaimR's Website",
"version": "1.0.0",
"author": "Adriaan Knapen",
"keywords": [
"gatsby"
],
"private": true,
"license": "UNLICENCED",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"dev": "yarn develop",
"lint": "prettier -l '**.{js,ts,json,md,html,yml,yaml}'",
"format": "yarn lint --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"gatsby": "^5.12.6",
"gatsby-image": "^3.11.0",
"gatsby-plugin-heap": "^1.1.0",
"gatsby-plugin-manifest": "^5.12.1",
"gatsby-plugin-offline": "^6.12.1",
"gatsby-plugin-react-helmet": "^6.12.0",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-sass": "^6.12.1",
"gatsby-plugin-sharp": "^5.12.1",
"gatsby-plugin-sitemap": "^6.12.1",
"gatsby-source-filesystem": "^5.12.0",
"gatsby-transformer-sharp": "^5.12.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.22.10",
"sass-loader": "^7.2.0"
},
"devDependencies": {
"@types/node": "^20.8.6",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"husky": "^4.3.8",
"lint-staged": "14.0.1",
"prettier": "3.0.3"
},
"resolutions": {
"loader-utils": "^2"
},
"repository": {
"type": "git",
"url": "https://github.com/claimr/website"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,json,md,html,yml,yaml}": "prettier --write"
},
"packageManager": "yarn@3.6.4"
}