-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.1 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
{
"name": "beer-shop",
"version": "1.0.0",
"description": "Little Beer Shop System",
"author": "Matheus R. Brunelli",
"license": "MIT",
"devDependencies": {
"@shelf/jest-mongodb": "^3.0.1",
"@types/axios": "^0.14.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.1",
"@types/mongodb": "^4.0.7",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"axios": "^0.27.2",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"git-commit-msg-linter": "^4.1.2",
"jest": "^28.1.0",
"ts-jest": "^28.0.2",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.6.4"
},
"scripts": {
"test": "jest --runInBand",
"tdd": "jest --watch",
"start:dev": "ts-node-dev -r tsconfig-paths/register --transpile-only ./src/main.ts"
},
"dependencies": {
"express": "^4.18.1",
"mongodb": "^4.6.0"
}
}