forked from aruppi/aruppi-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.18 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
{
"name": "aruppi",
"version": "4.2.0",
"description": "Aruppi is a custom API to obtain data from the Japanese culture for the mobile app",
"main": "./src/api/api.ts",
"scripts": {
"start": "node ./dist/server.js",
"dev": "tsnd --transpile-only --ignore-watch node_modules --respawn src/server.ts",
"build": "tsc -p ."
},
"keywords": [
"aruppi",
"aruppi api",
"aruppi app",
"aruppi android"
],
"author": {
"name": "Jéluchu",
"email": "[email protected]",
"reason": "Android Developer and Others",
"url": "https://jeluchu.github.io/",
"social": {
"github": "https://github.com/Jeluchu",
"twitter": "https://twitter.com/Jeluchu"
}
},
"contributors": [
{
"name": "Darkangeel",
"url": "https://github.com/Darkangeel-hd",
"reason": "System administration authority (SYSADM)"
},
{
"name": "Capitanwesler",
"url": "https://github.com/capitanwesler",
"reason": "Backend and Frontend developer"
}
],
"engines": {
"node": ">= 12.x",
"npm": ">= 6.14.x"
},
"bugs": {
"url": "https://github.com/aruppi/aruppi-api/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/aruppi/aruppi-api.git"
},
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.6",
"compose-middleware": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"got": "^11.8.5",
"helmet": "^4.5.0",
"mongodb": "^3.6.6",
"mongoose": "^5.12.5",
"redis": "^3.1.2",
"rss-parser": "^3.12.0",
"tough-cookie": "^4.0.0",
"ts-node-dev": "^1.1.1"
},
"devDependencies": {
"@types/cheerio": "^0.22.28",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/node": "^15.0.2",
"@types/redis": "^2.8.28",
"@types/tough-cookie": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}