-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 835 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 835 Bytes
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
{
"name": "bankmock",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon --exec 'ts-node' -r tsconfig-paths/register src/index.ts",
"lint": "tslint --fix --project ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/fs-extra": "^5.0.4",
"@types/node-fetch": "^2.1.2",
"express": "^4.16.4",
"express-winston": "^3.0.1",
"fs-extra": "^7.0.1",
"googleapis": "^35.0.0",
"node-fetch": "^2.2.1",
"ramda": "^0.25.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6",
"winston": "^3.1.0"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/node": "^10.12.4",
"nodemon": "^1.18.6",
"tsconfig-paths": "^3.7.0"
}
}