This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
executable file
·104 lines (104 loc) · 3.7 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "portfolio-v2",
"version": "1.0.0",
"private": true,
"description": "Home of lekoarts.de",
"author": "LekoArts <hello@lekoarts.de>",
"scripts": {
"bootstrap": "yarn && yarn rs:build && yarn playwright:init",
"build": "gatsby build",
"clean": "gatsby clean",
"develop": "gatsby develop",
"e2e:build": "cross-env IS_BUILD=y yarn playwright",
"e2e:develop": "yarn playwright:debug",
"lint": "eslint . --ignore-path .gitignore --ext .ts,.tsx,.js,.mdx,.mjs",
"lint:fix": "yarn lint --fix",
"lint:mdx": "eslint content/**/*.mdx --ext .mdx",
"lint:title-case": "./scripts/target/release/lint-title-case",
"new-garden": "./scripts/target/release/garden",
"new-post": "./scripts/target/release/post",
"rs:build": "cd scripts && cargo build --release",
"playwright": "cross-env IS_PLAYWRIGHT=y playwright test",
"playwright:debug": "cross-env IS_PLAYWRIGHT=y playwright test --debug",
"playwright:init": "playwright install chromium",
"prepare": "husky install",
"serve": "gatsby serve",
"spellcheck": "cspell lint content/**/**/*.mdx --show-suggestions",
"test:ci": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"tsc": "tsc",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@codesandbox/sandpack-react": "^2.10.0",
"@ctrl/tinycolor": "^4.0.2",
"@lekoarts/gatsby-source-flickr": "^0.1.1",
"@lekoarts/rehype-meta-as-attributes": "^3.0.1",
"@mdx-js/react": "^2.3.0",
"@react-aria/button": "^3.9.0",
"@react-stately/toggle": "^3.7.0",
"@sindresorhus/slugify": "^2.2.1",
"@vanilla-extract/css": "^1.14.0",
"@vanilla-extract/sprinkles": "^1.6.1",
"@vanilla-extract/webpack-plugin": "^2.3.1",
"gatsby": "^5.12.12",
"gatsby-adapter-netlify": "^1.0.4",
"gatsby-plugin-feed": "^5.12.3",
"gatsby-plugin-image": "^3.12.3",
"gatsby-plugin-manifest": "^5.12.3",
"gatsby-plugin-mdx": "^5.12.3",
"gatsby-plugin-perf-budgets": "^0.0.18",
"gatsby-plugin-sharp": "^5.12.3",
"gatsby-plugin-sitemap": "^6.12.3",
"gatsby-plugin-vanilla-extract": "^4.0.1",
"gatsby-remark-images": "^7.12.3",
"gatsby-source-filesystem": "^5.12.1",
"gatsby-source-graphql": "^5.12.1",
"gatsby-transformer-sharp": "^5.12.3",
"gatsby-transformer-yaml": "^5.12.0",
"lodash.camelcase": "^4.3.0",
"lodash.get": "^4.4.2",
"lodash.mergewith": "^4.6.2",
"prando": "^6.0.1",
"prism-react-renderer": "^1.3.5",
"query-string": "^7.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reading-time": "^1.5.0",
"remark-gfm": "^3.0.1",
"remark-slug": "^7.0.1",
"remark-smartypants": "^2.0.0"
},
"devDependencies": {
"@netlify/edge-functions": "^2.2.0",
"@playwright/test": "^1.41.2",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@types/lodash": "^4.14.202",
"@types/node": "^18.19.3",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vanilla-extract/vite-plugin": "^4.0.4",
"cross-env": "^7.0.3",
"cspell": "^7.3.9",
"eslint": "^8.55.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-mdx": "^2.2.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jsdom": "^24.0.0",
"lint-staged": "^14.0.1",
"prettier": "^3.1.1",
"typescript": "^5.3.3",
"vitest": "^1.3.0"
},
"packageManager": "yarn@3.6.3"
}