-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 858 Bytes
/
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
{
"name": "etf-mvc",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node dist/server.js",
"fetch-data": "node dist/fetchData.js",
"build": "tsc",
"test": "jest",
"dev": "nodemon src/server.ts --exec ts-node"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"body-parser": "^1.20.2",
"chartjs-adapter-date-fns": "^3.0.0",
"ejs": "^3.1.10",
"express": "^4.19.2",
"yahoo-finance": "^0.3.8",
"yahoo-finance2": "^2.11.3"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/ejs": "^3.1.5",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"ts-jest": "^29.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}