-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.98 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
{
"name": "pngx-api",
"version": "2.0",
"private": true,
"description": "Restful API that serves stock quotes from pngx.com.pg",
"main": "./server.js",
"scripts": {
"dev": "nodemon server.js --trace-warnings",
"devx": "nodemon -r dotenv/config server.js --trace-warnings",
"start": "node server.js",
"startx": "node --env-file=.env server.js",
"docs": "docsify serve docs",
"test": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/chrisaugu/pngx-api.git"
},
"keywords": [
"PNG",
"Stocks",
"PNGX stocks",
"POMSOX",
"stocks api",
"pngx api",
"png stock exchange api",
"papua new guinea stock exchange api"
],
"author": "Christian Augustyn",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisaugu/pngx-api/issues"
},
"homepage": "https://github.com/chrisaugu/pngx-api#readme",
"dependencies": {
"boxen": "^7.0.2",
"celery-node": "^0.5.9",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"debug": "~2.6.9",
"dotenv": "^16.4.7",
"escape-html": "^1.0.3",
"express": "^4.21.2",
"express-rate-limit": "^7.1.5",
"express-rate-limiter": "^1.3.1",
"fs": "^0.0.1-security",
"helmet": "^7.1.0",
"http-errors": "^2.0.0",
"ioredis": "^5.4.1",
"ip": "^1.1.8",
"marked": "^14.1.4",
"mongoose": "^8.8.3",
"morgan": "^1.10.0",
"node-cron": "^3.0.0",
"node-fetch": "^3.3.2",
"ora": "^7.0.1",
"os": "^0.1.2",
"papaparse": "^5.4.1",
"path": "^0.12.7",
"redis": "^4.7.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"serverless-http": "^3.2.0",
"superagent": "^10.1.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"sinon": "^19.0.2",
"supertest": "^7.0.0"
}
}