forked from Glowstudent777/YouVersion-API
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.72 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
{
"name": "@tokyodrift1993/youversion",
"version": "0.2.1",
"description": "Express Rest API for getting verses from YouVersion.",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"scripts": {
"lint": "eslint src/ --ext .js,.ts",
"build": "tsc",
"start": "npm run build && node ./dist/index.js",
"dev": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"release": "release-it",
"changelog": "auto-changelog --ignore-commit-pattern \"Release v\" --sort-commits date-desc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tokyodrift1993/YouVersion.git"
},
"keywords": [],
"author": "Glowstudent",
"license": "MIT",
"bugs": {
"url": "https://github.com/tokyodrift1993/YouVersion/issues"
},
"homepage": "https://github.com/tokyodrift1993/YouVersion#readme",
"dependencies": {
"axios": "1.1.3",
"body-parser": "^1.20.1",
"cheerio": "1.0.0-rc.12",
"cheerio-select": "2.1.0",
"dotenv-extended": "^2.9.0",
"express": "^4.18.2",
"fs": "0.0.1-security",
"path": "^0.12.7",
"redis": "^4.6.7"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@types/express": "^4.17.17",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "~5.59.0",
"@typescript-eslint/parser": "~5.59.0",
"auto-changelog": "~2.4.0",
"eslint": "~8.42.0",
"eslint-config-prettier": "~8.8.0",
"eslint-plugin-prettier": "~4.2.0",
"eslint-plugin-simple-import-sort": "~10.0.0",
"eslint-plugin-unused-imports": "~2.0.0",
"prettier": "npm:@btmills/prettier@^2.8.8",
"release-it": "<15",
"tsc-watch": "^6.0.0",
"typescript": "^4.9.5"
}
}