-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1020 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
39
40
{
"name": "stock-api",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"watch": "nodemon --exec ts-node src/index.ts --watch src",
"watch:node": "nodemon --exec ts-node src/index.ts --watch src",
"watch:ts": "tsc --watch",
"build:ts": "tsc",
"test": "jest"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@types/cors": "^2.8.6",
"axios": "^0.19.2",
"cors": "^2.8.5",
"date-fns": "^2.9.0",
"express": "^4.17.1",
"http-errors": "^1.7.3",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/http-errors": "^1.6.3",
"@types/jest": "^25.1.1",
"@types/lodash": "^4.14.149",
"@types/nock": "^11.1.0",
"@types/supertest": "^2.0.8",
"jest": "^25.1.0",
"nock": "^11.7.2",
"nodemon": "^2.0.2",
"supertest": "^4.0.2",
"ts-jest": "^25.1.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}