-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.54 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
{
"name": "commandee-web",
"version": "0.0.1",
"description": "Aplicação web do Commandee",
"author": "dancarinos",
"type": "module",
"license": "AGPL-3.0-or-later",
"main": "dist/index.js",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prisma": "prisma",
"prisma:gen": "npm run prisma generate",
"prisma:push": "npm run prisma db push",
"run:dev": "npm run astro dev",
"run:prod": "npm run astro build && node dist/"
},
"dependencies": {
"@astrojs/image": "^0.17.0",
"@astrojs/node": "^5.3.0",
"@astrojs/prefetch": "^0.3.0",
"@astrojs/sitemap": "^1.4.0",
"@astrojs/tailwind": "^4.0.0",
"@prisma/client": "^5.0.0",
"astro": "^2.10.7",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.1",
"sharp": "^0.32.1",
"tailwindcss": "^3.3.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^18.16.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"autoprefixer": "^10.4.14",
"cssnano": "^6.0.1",
"dotenv": "^16.3.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"postcss": "^8.4.26",
"prettier": "^2.8.8",
"prisma": "^5.0.0",
"sass": "^1.63.6"
}
}