-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 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
{
"name": "v3x-company",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "pnpm run configs && next",
"dev": "pnpm run configs && next",
"build": "pnpm configs && next build",
"configs": "pnpm run tailwind-config && pnpm run postcss-config && pnpm run next-config",
"postcss-config": "tsc postcss.config.ts --skipLibCheck --module commonjs --target es2015 --esModuleInterop true --allowSyntheticDefaultImports true --moduleResolution node",
"tailwind-config": "tsc tailwind.config.ts --skipLibCheck --module commonjs --target es2015 --esModuleInterop true --allowSyntheticDefaultImports true --moduleResolution node",
"next-config": "tsc next.config.ts --skipLibCheck --module commonjs --target es2015 --esModuleInterop true --allowSyntheticDefaultImports true --moduleResolution node",
"lint": "eslint -c .eslintrc.json --ext .tsx ./app",
"optimize-contributor": "cwebp -q 80 -resize 54 54 $INPUT -o ./public/contibutor/$SLUG.webp && mv $INPUT /tmp",
"optimize-team": "cwebp -q 80 -resize 108 108 $INPUT -o ./public/team/$SLUG.webp && mv $INPUT /tmp"
},
"keywords": [],
"author": "V3X Labs",
"license": "GPL-3.0-or-later",
"dependencies": {
"autoprefixer": "^10.4.14",
"eslint-plugin-tailwindcss": "^3.12.1",
"next": "^13.4.6",
"postcss": "^8.4.24",
"tailwindcss": "^3.3.2"
},
"devDependencies": {
"@types/node": "20.3.1",
"@types/react": "18.2.13",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-plugin-v3xlabs": "^1.6.0",
"typescript": "5.1.3"
}
}