Skip to content

Commit ec50f8c

Browse files
committed
build: init compile-code app
1 parent 209df82 commit ec50f8c

11 files changed

+452
-308
lines changed

biome.json

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
3+
"organizeImports": {
4+
"enabled": false
5+
},
6+
"files": {
7+
"ignore": ["src/exceptions/errors.ts"]
8+
},
9+
"vcs": {
10+
"enabled": true,
11+
"clientKind": "git",
12+
"useIgnoreFile": true
13+
},
14+
"linter": {
15+
"enabled": true,
16+
"rules": {
17+
"recommended": true,
18+
"style": {
19+
"noNonNullAssertion": "off"
20+
},
21+
"suspicious": {
22+
"noEmptyInterface": "off"
23+
},
24+
"a11y": {
25+
"useKeyWithClickEvents": "off",
26+
"useKeyWithMouseEvents": "off"
27+
}
28+
},
29+
"ignore": ["src/exceptions/errors.ts"]
30+
},
31+
"formatter": {
32+
"ignore": ["configuration-schema.json"],
33+
"enabled": true,
34+
"indentStyle": "tab",
35+
"lineWidth": 150
36+
},
37+
"javascript": {
38+
"formatter": {
39+
"quoteStyle": "single",
40+
"trailingComma": "all",
41+
"semicolons": "always",
42+
"jsxQuoteStyle": "single"
43+
}
44+
}
45+
}

components.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "default",
4+
"rsc": true,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "tailwind.config.ts",
8+
"css": "src/styles/tailwind.scss",
9+
"baseColor": "neutral",
10+
"cssVariables": true
11+
},
12+
"aliases": {
13+
"components": "@/components",
14+
"utils": "@/lib/utils/cn"
15+
}
16+
}

package.json

+32-23
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,34 @@
11
{
2-
"name": "code-compiler",
3-
"version": "0.1.0",
4-
"private": true,
5-
"scripts": {
6-
"dev": "next dev",
7-
"build": "next build",
8-
"start": "next start",
9-
"lint": "next lint"
10-
},
11-
"dependencies": {
12-
"react": "^18",
13-
"react-dom": "^18",
14-
"next": "14.1.0"
15-
},
16-
"devDependencies": {
17-
"typescript": "^5",
18-
"@types/node": "^20",
19-
"@types/react": "^18",
20-
"@types/react-dom": "^18",
21-
"autoprefixer": "^10.0.1",
22-
"postcss": "^8",
23-
"tailwindcss": "^3.3.0"
24-
}
2+
"name": "code-compiler",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": {
6+
"dev": "next dev",
7+
"build": "next build",
8+
"start": "next start",
9+
"format": "pnpm biome format --write ./src",
10+
"lint": "pnpm biome lint ./src --apply",
11+
"check": "pnpm biome check ./src --apply"
12+
},
13+
"dependencies": {
14+
"class-variance-authority": "^0.7.0",
15+
"clsx": "^2.1.0",
16+
"lucide-react": "^0.314.0",
17+
"next": "14.1.0",
18+
"react": "^18.2.0",
19+
"react-dom": "^18.2.0",
20+
"tailwind-merge": "^2.2.0",
21+
"tailwindcss-animate": "^1.0.7"
22+
},
23+
"devDependencies": {
24+
"@biomejs/biome": "^1.5.2",
25+
"@types/node": "^20.11.5",
26+
"@types/react": "^18.2.48",
27+
"@types/react-dom": "^18.2.18",
28+
"autoprefixer": "^10.4.17",
29+
"postcss": "^8.4.33",
30+
"sass": "^1.70.0",
31+
"tailwindcss": "^3.4.1",
32+
"typescript": "^5.3.3"
33+
}
2534
}

0 commit comments

Comments
 (0)