-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.16 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.16 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
{
"name": "shorvan",
"author": "Ivan Cavero",
"description": "Shorvan is a URL shortener that helps you shorten links. Developed by Ivan Cavero",
"license": "MIT",
"type": "module",
"version": "0.0.12",
"scripts": {
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"deploy": "git checkout main && git merge develop && npm version patch -m 'Release: %s' && git push origin main && git checkout develop && git push origin develop",
"hotfix": "git checkout main && git merge develop && npm version patch -m 'Hotfix: %s' && git push origin main",
"tests": "bunx playwright test",
"tests:ui": "bunx playwright test --ui",
"tests:project": "bunx playwright test --project=chromium",
"tests:debug": "bunx playwright test --debug",
"tests:codegen": "bunx playwright codegen"
},
"dependencies": {
"@astrojs/tailwind": "^5.1.0",
"@astrojs/vercel": "^7.5.3",
"@midudev/tailwind-animations": "^0.0.7",
"astro": "^4.6.1",
"tailwindcss": "^3.4.3"
},
"devDependencies": {
"@biomejs/biome": "1.7.0",
"@playwright/test": "^1.43.1",
"@types/node": "^20.12.7"
}
}