-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.58 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
46
47
48
49
50
51
52
{
"name": "rinha-de-backend-2024-q1-node",
"version": "1.0.0",
"description": "Projeto para a rinha de backend 2024-q1 utilizando node",
"main": "index.js",
"scripts": {
"test": "jest --forceExit --detectOpenHandles",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint:check": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"lint-and-format:fix": "npm run lint:fix && npm run format:fix",
"build:ts": "tsc",
"start": "npm run build:ts && node ./dist/src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dionesvfreitas/rinha-de-backend-2024-q1-node.git"
},
"keywords": [
"typescript",
"rinha",
"backend",
"crebito"
],
"author": "Diones Valentim Freitas <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/dionesvfreitas/rinha-de-backend-2024-q1-node/issues"
},
"homepage": "https://github.com/dionesvfreitas/rinha-de-backend-2024-q1-node#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@databases/pg": "^5.5.0",
"fastify": "^4.26.1"
}
}