-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.19 KB
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
{
"name": "ffconf",
"version": "1.1.0",
"description": "Root for ffconf",
"main": "index.js",
"private": true,
"engines": {
"node": "22"
},
"scripts": {
"update": "node ./posts.js",
"server:dev": "PORT=3333 nodemon ./graphql/server",
"server": "PORT=3333 node ./graphql/server",
"dev": "eleventy --serve --quiet",
"jobs": "node ./jobs.mjs",
"redirects": "node ./redirects.js",
"prebuild": "npm run jobs",
"build": "eleventy && npm run redirects && test -e dist/index.html"
},
"author": "Remy Sharp",
"license": "MIT",
"dependencies": {
"@11ty/eleventy-upgrade-help": "^3.0.1",
"apollo-server-micro": "2.9.4",
"csv-parse": "^5.3.1",
"graphql": "^15.10.1",
"graphql-yoga": "^5.18.0",
"markdown-it": "^14.0.0",
"markdown-it-attrs": "^4.1.6",
"markdown-it-implicit-figures": "^0.12.0",
"slugify": "^1.6.5",
"undefsafe": "^2.0.2",
"unidecode": "^0.1.8"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-plugin-rss": "^1.0.6",
"apollo-server-testing": "^2.25.3",
"date-fns": "^1.30.1",
"eslint": "^9.39.1",
"eslint-plugin-node": "^11.1.0",
"globals": "^16.5.0"
}
}