-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.56 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
{
"private": true,
"name": "blog",
"description": "Personal website and blog",
"version": "0.0.0",
"author": "Federico Knüssel <fed@duck.com>",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/fed/blog/issues"
},
"dependencies": {
"@babel/preset-typescript": "^7.26.0",
"@types/enzyme": "^3.10.18",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-helmet": "^6.1.11",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@vanilla-extract/css": "^1.16.1",
"@vanilla-extract/jest-transform": "^1.1.11",
"@vanilla-extract/webpack-plugin": "^2.3.15",
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
"babel-jest": "^29.7.0",
"babel-preset-gatsby": "^3.14.0",
"bluebird": "^3.7.2",
"enzyme": "^3.11.0",
"eslint": "^8.47.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"gatsby": "^5.14.0",
"gatsby-plugin-feed": "^5.14.0",
"gatsby-plugin-graphql-codegen": "^3.1.1",
"gatsby-plugin-manifest": "^5.14.0",
"gatsby-plugin-react-helmet": "^6.14.0",
"gatsby-plugin-sharp": "^5.14.0",
"gatsby-plugin-vanilla-extract": "^4.0.2",
"gatsby-remark-embedder": "^7.0.0",
"gatsby-remark-images": "^7.14.0",
"gatsby-remark-vscode": "^3.3.1",
"gatsby-source-filesystem": "^5.14.0",
"gatsby-transformer-remark": "^6.14.0",
"gatsby-transformer-sharp": "^5.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lodash": "^4.17.21",
"normalize.css": "^8.0.1",
"prettier": "^3.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-emoji-render": "^2.0.1",
"react-helmet": "^6.1.0",
"typescript": "^5.7.2"
},
"scripts": {
"start": "gatsby develop",
"build": "gatsby build",
"clean": "gatsby clean",
"prepare": "husky",
"lint": "eslint --ext .js,.ts,.tsx --ignore-pattern public .",
"format": "prettier --write \"**/*.{js,ts,tsx,json,md}\"",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand"
}
}