-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.2 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
{
"name": "bank-api",
"version": "1.0.0",
"description": "Bank as a Service API",
"main": "index.ts",
"repository": "https://github.com/FabricioGonzalez/Bank-API.git",
"author": "Fabricio Gonzalez França Ribeiro <[email protected]>",
"license": "MIT",
"private": true,
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/module-alias": "^2.0.0",
"@types/mongoose": "^5.10.3",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"supertest": "^6.1.3",
"ts-jest": "^26.5.2",
"ts-node-dev": "^1.1.1",
"typescript": "^4.2.2"
},
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"start": "node dist/src/index.js",
"lint": "eslint ./src ./ test --ext .ts",
"lint:fix": "eslint ./src ./ test --ext .ts --fix",
"build": "tsc",
"test": "jest"
},
"dependencies": {
"express": "^4.17.1",
"jwt-simple": "^0.5.6",
"module-alias": "^2.2.2",
"mongoose": "^5.11.18",
"ts-node": "^9.1.1"
}
}