-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.28 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
{
"name": "amys_kapers",
"version": "3.0.0",
"scripts": {
"dev": "astro dev --config ./config/astro.config.mjs",
"start": "doppler run -- npm run dev",
"swa": "concurrently \"npm run api\" \"swa start --verbose silent\"",
"build": "astro build --config ./config/astro.config.mjs",
"preview": "astro preview",
"clean": "rm -rf dist",
"api": "cd api && npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amykapernick/amys_kapers.git"
},
"engines": {
"node": "20.x"
},
"author": "Amy Kapernick <[email protected]> (https://amyskapers.dev)",
"license": "MIT",
"homepage": "https://amyskapers.dev",
"overrides": {
"@eslint-community/eslint-utils": {
"eslint": "^9.4.0"
},
"eslint-config-airbnb": {
"eslint": "^9.4.0"
}
},
"dependencies": {
"@astrojs/markdown-remark": "^5.1.0",
"@astrojs/react": "^3.5.0",
"@astrojs/sitemap": "^3.1.5",
"@notionhq/client": "^2.2.15",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"astro": "^4.10.1",
"date-fns": "^3.6.0",
"postcss-hexrgba": "^2.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rehype-external-links": "^3.0.0",
"rehype-picture": "^5.0.0",
"remark-comment": "^1.0.0",
"remark-hint": "^1.0.10",
"remark-oembed": "^1.2.2",
"remark-squeeze-paragraphs": "^6.0.0"
},
"devDependencies": {
"astro-eslint-parser": "^1.0.2",
"eslint": "^9.4.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-astro": "^1.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"postcss": "^8.4.35",
"postcss-advanced-variables": "^4.0.0",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-mixins": "^10.0.1",
"postcss-nested-vars": "^1.0.0",
"postcss-nesting": "^12.1.5",
"postcss-rgb": "^1.0.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.3.1",
"prettier-plugin-astro": "^0.14.0",
"stylelint": "^16.6.1",
"stylelint-config-astro": "^1.0.4",
"stylelint-config-html": "^1.1.0",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.0",
"stylelint-use-nesting": "^5.1.1"
}
}