-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
45 lines (45 loc) · 1.35 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
{
"name": "fundamentalanalysishistoricaldataserver",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ENV=dev node dist/src/server/server.js",
"prod": "ENV=prod node dist/src/server/server.js",
"build": "tsc",
"dev": "nodemon --watch \"src/\" --exec \"ts-node src/bin/www.ts\" -e ts",
"cron": "node dist/cron/get-daily-information-from-db.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daniloaleixo/fundamentalAnalysisHistoricalDataServer.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/daniloaleixo/fundamentalAnalysisHistoricalDataServer/issues"
},
"homepage": "https://github.com/daniloaleixo/fundamentalAnalysisHistoricalDataServer#readme",
"dependencies": {
"@sendgrid/mail": "6.5.1",
"@types/request": "^2.48.4",
"apollo-server": "2.14.2",
"dotenv": "8.0.0",
"express": "^4.17.1",
"graphql": "14.4.2",
"lodash": "4.17.19",
"mongodb": "3.2.7",
"ts-node": "^8.2.0"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/graphql": "14.2.0",
"@types/lodash": "4.14.136",
"@types/mongodb": "3.1.28",
"@types/node-fetch": "2.5.4",
"nodemon": "1.19.1",
"notarealdb": "0.2.2",
"typescript": "3.4.5"
}
}