-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
{
"name": "investments-cron",
"version": "1.0.0",
"description": "",
"main": "App.js",
"scripts": {
"build": "./node_modules/typescript/bin/tsc",
"start": "node dist/App.js",
"dev": "ts-node-dev src/App.ts",
"test": "jest -c jest.config.js",
"test:watch": "jest -c jest.config.js --watchAll",
"gcp-build": "tsc",
"deploy": "gcloud app deploy",
"prepare": "npm run gcp-build"
},
"engines": {
"node": ">=10.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"date-fns": "^2.16.1",
"express": "^4.17.1",
"fp-ts": "^2.8.3",
"got": "10.2.2",
"helmet": "^4.1.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/got": "^9.6.11",
"@types/helmet": "0.0.48",
"@types/jest": "^26.0.14",
"@types/morgan": "^1.9.1",
"@types/node": "^14.11.2",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"ts-jest": "^26.4.0",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.0.0-pre.63",
"tslint": "^6.1.3",
"typescript": "^4.0.3",
"wait-port": "^0.2.9"
}
}