-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.31 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "babylon-reader",
"version": "0.1.0",
"private": false,
"description": "A Bible reader with badges for our Babylon series.",
"repository": "https://github.com/flatlandchurch/babylon-reader",
"license": "GPL-3.0-or-later",
"author": "Matt McElwee <[email protected]>",
"main": "dist/main.js",
"scripts": {
"prebuild": "rimraf public/data",
"build": "run-p build:bundle build:data",
"build:bundle": "node build.js",
"build:data": "run-s build:yves build:html build:json build:content",
"build:yves": "node tools/parseYves.js",
"build:html": "node tools/parseHTML.js",
"build:json": "node tools/normalize.js",
"build:content": "node tools/makeContentFile.js",
"postbuild": "node tools/copyBundledFiles.js",
"start": "netlify dev",
"test": "ava",
"email": "node tools/massEmail.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md,ts,tsx}": [
"prettier --write"
]
},
"prettier": "@dmsi/prettier-config",
"ava": {
"concurrency": 4,
"extensions": [
"ts"
],
"files": [
"src/**/*.test.ts"
],
"require": [
"ts-node/register"
],
"timeout": "1m"
},
"devDependencies": {
"@dmsi/prettier-config": "^1.3.0",
"@types/cookie": "^0.4.1",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^16.3.3",
"@types/uuid": "^8.3.1",
"ava": "^3.15.0",
"cheerio": "^1.0.0-rc.10",
"cpy": "^8.1.2",
"dotenv": "^10.0.0",
"esbuild": "^0.12.16",
"globby": "^11.0.4",
"husky": "^7.0.1",
"just-flatten": "^1.0.0",
"lint-staged": "^11.0.1",
"make-dir": "^3.1.0",
"mri": "^1.1.6",
"netlify-cli": "^5.2.6",
"npm-run-all": "^4.1.5",
"pipr": "^1.0.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"templite": "^1.1.0",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"windows-1252": "^1.0.1",
"yaml": "^1.10.2"
},
"dependencies": {
"@netlify/functions": "^0.7.2",
"@sendgrid/mail": "^7.4.7",
"catchify": "^2.6.1",
"click-should-be-intercepted-for-navigation": "^1.0.0",
"cookie": "^0.4.1",
"date-fns": "^2.24.0",
"faunadb": "^4.4.1",
"goober": "^2.0.39",
"jsonwebtoken": "^8.5.1",
"luxon": "^2.0.2",
"mandrill-api": "^1.0.45",
"md5": "^2.3.0",
"preact": "^10.5.14",
"sort-on": "^4.1.1",
"uuid": "^8.3.2",
"verse-reference-regex": "^1.3.0",
"wouter": "^2.7.4",
"wouter-preact": "^2.7.4"
}
}