forked from brendan-jarvis/finance-npm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 927 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
37
38
{
"name": "finance-npm",
"version": "0.1.0",
"description": "A quick project using yahoo-finance from NPM",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index --ignore data.json",
"lint": "eslint .",
"test": "jest --watchAll"
},
"homepage": "https://github.com/brendan-jarvis/finance-npm#readme",
"author": "Brendan Jarvis",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/brendan-jarvis/finance-npm"
},
"bugs": {
"url": "https://github.com/brendan-jarvis/finance-npm/issues"
},
"dependencies": {
"express": "^4.18.1",
"express-handlebars": "^6.0.6",
"yahoo-finance": "^0.3.7"
},
"devDependencies": {
"eslint": "^8.21.0",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"supertest": "^6.2.4"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}