-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "@glowstudent/youversion",
"version": "1.0.0",
"description": "Express Rest API for getting verses and such from YouVersion. ",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"start": "npm run build && node ./dist/index.js",
"dev": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Glowstudent777/YouVersion-API.git"
},
"keywords": [],
"author": "Glowstudent",
"license": "MIT",
"bugs": {
"url": "https://github.com/Glowstudent777/YouVersion-API/issues"
},
"homepage": "https://github.com/Glowstudent777/YouVersion-API#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",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"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",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"tsc-watch": "^6.0.0",
"typescript": "^4.9.5",
"vitest": "^1.6.0"
}
}