-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.77 KB
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
53
54
55
{
"name": "finance-app-api",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"test": "dotenv -e .env.test -- node --experimental-vm-modules node_modules/jest/bin/jest.js --passWithNoTests --silent --runInBand --detectOpenHandles --forceExit",
"test:watch": "npm run test -- --watch --runInBand",
"test:coverage": "npm run test -- --coverage --runInBand",
"postinstall": "husky && prisma generate",
"start:dev": "node --watch index.js",
"start": "node index.js",
"eslint:check": "eslint src",
"prettier:check": "prettier src --check --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devpedro-dias/finance-app-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/devpedro-dias/finance-app-api/issues"
},
"homepage": "https://github.com/devpedro-dias/finance-app-api#readme",
"description": "",
"devDependencies": {
"@faker-js/faker": "^9.7.0",
"@types/jest": "^29.5.14",
"eslint": "^9.25.1",
"git-commit-msg-linter": "^5.0.8",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.5.1",
"prettier": "^3.5.3",
"prisma": "^5.12.1",
"supertest": "^7.1.0"
},
"dependencies": {
"@prisma/client": "^5.12.1",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"dotenv": "^16.5.0",
"dotenv-cli": "^8.0.0",
"express": "^5.1.0",
"globals": "^16.0.0",
"jsonwebtoken": "^9.0.2",
"swagger-ui-express": "^5.0.1",
"uuid": "^11.1.0",
"validator": "^13.15.0",
"zod": "^3.24.3"
}
}