-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.24 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.24 KB
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
{
"name": "james-toohey",
"private": true,
"description": "James Toohey's portfolio and blog",
"version": "0.1.0",
"author": "James Toohey <[email protected]>",
"license": "MIT",
"scripts": {
"add-cname": "echo toohey.dev > public/CNAME",
"clean": "gatsby clean",
"generate-sprite": "node src/build/generate-sprite.js",
"predev": "npm run generate-sprite",
"dev": "gatsby develop",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"lint": "eslint --ext .tsx,.ts ./",
"lint:fix": "npm run lint -- --fix",
"prebuild": "npm run generate-sprite",
"build": "gatsby build && npm run add-cname",
"serve": "gatsby serve",
"deploy": "gatsby build && gh-pages -d public -b master"
},
"dependencies": {
"@radix-ui/react-dialog": "1.0.5",
"framer-motion": "^10.16.4",
"gatsby": "5.12.8",
"gatsby-image": "3.11.0",
"gatsby-plugin-catch-links": "5.12.0",
"gatsby-plugin-google-analytics": "5.12.0",
"gatsby-plugin-manifest": "5.12.2",
"gatsby-plugin-offline": "6.12.2",
"gatsby-plugin-react-helmet": "6.12.0",
"gatsby-plugin-sass": "6.12.2",
"gatsby-plugin-sharp": "5.12.2",
"gatsby-plugin-sitemap": "6.12.2",
"gatsby-plugin-typescript": "5.12.0",
"gatsby-source-filesystem": "5.12.0",
"gatsby-transformer-sharp": "5.12.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-helmet": "6.1.0"
},
"devDependencies": {
"@types/react-dom": "^18.0.11",
"@types/react-helmet": "6.1.8",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "6.0.0",
"pre-commit": "1.2.2",
"prettier": "3.0.3",
"sass": "1.69.4",
"svg-sprite": "^1.5.4",
"typescript": "4.7.3"
},
"pre-commit": [
"lint:fix"
]
}