-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 987 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 987 Bytes
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
{
"name": "weverse-api",
"version": "1.0.0",
"description": "API wrapper for Weverse.io",
"author": "kiy0w0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kiy0w0/weverse-api.git"
},
"bugs": {
"url": "https://github.com/kiy0w0/weverse-api/issues"
},
"homepage": "https://github.com/kiy0w0/weverse-api#readme",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "jest --detectOpenHandles"
},
"dependencies": {
"axios": "^1.6.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"joi": "^17.11.0",
"node-cache": "^5.1.2",
"node-forge": "^1.3.1",
"rss": "^1.2.2",
"swagger-ui-express": "^5.0.0",
"winston": "^3.11.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3"
}
}