-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.79 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
{
"name": "talks",
"version": "4.0.0",
"description": "Presentation Slides",
"homepage": "https://talks.amyskapers.dev/",
"scripts": {
"dev": "astro dev --config ./config/astro.config.mjs",
"start": "npm run dev",
"ts": "astro check && tsc --noEmit",
"build": "npm run ts && npm run build:astro",
"build:astro": "astro build --config ./config/astro.config.mjs",
"preview": "astro preview",
"new": "./utils/new_talk.sh"
},
"author": "Amy Kapernick <[email protected]> (https://amyskapers.dev/)",
"license": "MIT",
"dependencies": {
"@astrojs/check": "^0.4.1",
"@astrojs/mdx": "^2.1.0",
"@astrojs/sitemap": "^3.0.5",
"@astrojs/ts-plugin": "^1.4.0",
"@types/reveal": "^4.2.0",
"astro": "^4.2.4",
"chart.js": "^4.4.1",
"postcss-advanced-variables": "^3.0.1",
"postcss-hexrgba": "^2.1.0",
"reveal.js": "^5.0.4",
"stylelint": "^16.2.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/node": "^20.11.6",
"@types/reveal.js": "^4.4.8",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"astro-eslint-parser": "^0.16.2",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-astro": "^0.31.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"postcss-html": "^1.6.0",
"postcss-import": "^16.0.0",
"postcss-mixins": "^9.0.4",
"postcss-nesting": "^12.0.2",
"postcss-rgb": "^1.0.0",
"prettier": "^3.2.4",
"prettier-plugin-astro": "^0.13.0",
"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.3",
"stylelint-prettier": "^5.0.0",
"stylelint-use-nesting": "^4.1.0"
}
}