-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.75 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
{
"name": "url-shortener",
"displayName": "Url Shortener",
"description": "A url shortener application developed for academic work",
"version": "1.0.0",
"license": "MIT",
"main": "dist/app.js",
"author": "Lucas Santana",
"repository": {
"type": "git",
"url": "https://github.com/Quinhas/url-shortener.git"
},
"bugs": {
"url": "https://github.com/Quinhas/url-shortener/issues"
},
"scripts": {
"prepare": "husky install",
"dev": "tsx watch src/app.ts",
"build": "tsup src/",
"start": "node dist/app.js",
"test": "vitest",
"commit": "git-cz",
"lint": "eslint src",
"format": "prettier src"
},
"devDependencies": {
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/node-cron": "^3.0.7",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@vitest/coverage-c8": "^0.29.1",
"@vitest/ui": "^0.29.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"prettier": "^2.8.4",
"prisma": "^4.10.1",
"tsup": "^6.6.3",
"tsx": "^3.12.3",
"typescript": "^4.9.5",
"vite-tsconfig-paths": "^4.0.5",
"vitest": "^0.28.5"
},
"dependencies": {
"@prisma/client": "^4.10.1",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.0",
"node-cron": "^3.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}