-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 905 Bytes
/
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
{
"name": "@stanlemon/lectionary",
"version": "1.1.0",
"description": "A calculator for the Western Christian church calendar.",
"keywords": [
"christian",
"lectionary",
"liturgy",
"lutheran",
"lutheranism"
],
"author": "Stan Lemon <stanlemon@users.github.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:stanlemon/lectionary-js.git"
},
"engines": {
"node": ">=20.0"
},
"scripts": {
"start": "webpack serve",
"build": "NODE_ENV=production webpack",
"test": "jest",
"lint": "eslint .",
"lint:format": "eslint --fix ."
},
"type": "module",
"exports": "./lib/index.js",
"dependencies": {
"@stanlemon/webdev": "^0.2.6",
"luxon": "^3.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"wouter": "^3.3.5"
},
"devDependencies": {
"@testing-library/react": "^16.0.1"
}
}