-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 909 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.4",
"description": "A calculator for the Western Christian church calendar.",
"keywords": [
"christian",
"lectionary",
"liturgy",
"lutheran",
"lutheranism"
],
"author": "Stan Lemon <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:stanlemon/lectionary-js.git"
},
"engines": {
"node": ">=20.12.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.22",
"luxon": "^3.5.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"wouter": "^3.3.5"
},
"devDependencies": {
"@testing-library/react": "^16.1.0"
}
}