-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.46 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "url-shortener",
"version": "1.0.0",
"main": "index.js",
"description": "url shortener service in nodejs",
"author": "Gabriel Moretti",
"license": "ISC",
"scripts": {
"prepare": "husky install",
"dev": "npx tsnd -r tsconfig-paths/register --transpile-only --ignore-watch node_modules src/main/server.ts",
"migrate:deploy": "npx prisma migrate deploy",
"migrate:test": "npx dotenv -e .env.test -- npm run migrate:deploy",
"test": "npx dotenv -e .env.test -- jest --runInBand",
"test:unit": "npm test -- --watch -c tests/config/jest-unit-config.ts",
"test:integration": "npm test -- --watch -c tests/config/jest-integration-config.ts",
"up:test": "docker-compose --env-file .env.test up -d test_db"
},
"dependencies": {
"@prisma/client": "^5.21.1",
"bcrypt": "^5.1.1",
"express": "^4.21.1",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^7.4.1",
"express-xss-sanitizer": "^1.2.0",
"helmet": "^8.0.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.2",
"swagger-ui-express": "^5.0.1",
"validator": "^13.12.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@faker-js/faker": "^9.2.0",
"@swc/jest": "^0.2.37",
"@types/bcrypt": "^5.0.2",
"@types/express": "^5.0.0",
"@types/express-rate-limit": "^5.1.3",
"@types/hpp": "^0.2.6",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.8.4",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.7",
"@types/validator": "^13.12.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prisma": "^5.21.1",
"supertest": "^7.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.3"
},
"engines": {
"node": "^22.11.0"
},
"repository": {
"type": "git",
"url": "github:GabrielMorettii/teddy-url-shortener"
},
"bugs": {
"url": "https://github.com/GabrielMorettii/teddy-url-shortener/issues"
},
"homepage": "https://github.com/GabrielMorettii/teddy-url-shortener/#readme"
}