-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "@artichokeruby/rubyconf",
"version": "0.6.0",
"type": "module",
"private": true,
"description": "Artichoke Ruby conference talk website",
"keywords": [
"programming language",
"scripting",
"ruby",
"rust"
],
"homepage": "https://artichoke.github.io/rubyconf/",
"bugs": "https://github.com/artichoke/rubyconf/issues",
"license": "MIT",
"author": "Ryan Lopopolo <[email protected]> (https://hyperbo.la/)",
"contributors": [
"Ryan Lopopolo <[email protected]> (https://hyperbo.la/)"
],
"repository": "github:artichoke/rubyconf",
"dependencies": {
"reveal.js": "^5.1.0"
},
"devDependencies": {
"@artichokeruby/logo": "^0.12.0",
"@eslint/js": "9.13.0",
"eslint": "9.13.0",
"eta": "^3.5.0",
"globals": "^15.11.0",
"highlight.js": "^11.10.0",
"marked": "^4.3.0",
"prettier": "3.2.5",
"rimraf": "^6.0.1",
"sass": "^1.80.5",
"vite": "^5.4.10"
},
"scripts": {
"dev": "vite dev",
"build": "vite build --emptyOutDir",
"preview": "vite preview",
"clean": "rimraf dist",
"copy:assets": "rimraf \"src/public/!(*.txt|site.webmanifest)\" && node copy-assets.mjs",
"fmt": "prettier --write \"**/*\"",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
}
}