-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.32 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
{
"name": "bundesliga",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "yarn build && node dist/src/index.js",
"start:local": "ts-node-dev --transpile-only src/index.ts",
"lint": "eslint ./src ./test --ext .ts",
"lint:fix": "eslint ./src ./test --ext .ts --fix",
"style:check": "prettier --check 'src/**/*.ts' 'test/**/*.ts'",
"style:fix": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"test:unit": "jest",
"test:functional": "jest --projects ./test --forceExit --runInBand"
},
"author": "Matheus Gomes",
"license": "ISC",
"description": "",
"dependencies": {
"@overnightjs/core": "^1.7.6",
"axios": "^0.24.0",
"body-parser": "^1.19.1",
"config": "^3.3.6",
"express": "^4.17.2",
"module-alias": "^2.2.2"
},
"devDependencies": {
"@types/config": "^0.0.40",
"@types/express": "^4.17.13",
"@types/axios": "0.14.0",
"@types/jest": "^27.0.3",
"@types/module-alias": "^2.0.1",
"@types/node": "16",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.5.0",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"supertest": "^6.1.6",
"ts-jest": "^27.1.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
}
}