-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.88 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
67
{
"name": "app-yobta",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=20.10.0"
},
"packageManager": "pnpm@8.15.6",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"prettify": "npx prettier --wrinte .",
"start": "next start",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"test": "vitest src --coverage --run",
"test:watch": "vitest src --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.0.3",
"@tailwindcss/typography": "^0.5.15",
"@yobta/stores": "0.3.2",
"@yobta/validator": "^1.0.0",
"@yobta/validator-react": "^0.0.2",
"clsx": "^2.1.1",
"daisyui": "^4.12.14",
"next": "^15.0.3",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@logux/eslint-config": "^53.5.1",
"@types/mdx": "^2.0.13",
"@types/node": "22.9.0",
"@types/postcss-js": "^4.0.4",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitest/coverage-v8": "^2.1.5",
"autoprefixer": "^10.4.20",
"c8": "^10.1.2",
"dotenv": "^16.4.5",
"eslint": "9.15.0",
"eslint-config-next": "15.0.3",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.13.2",
"eslint-plugin-perfectionist": "^3.9.1",
"eslint-plugin-prefer-let": "^4.0.0",
"eslint-plugin-promise": "^7.1.0",
"happy-dom": "^15.11.6",
"postcss": "^8.4.49",
"postcss-js": "^4.0.1",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.15",
"typescript": "5.6.3",
"typescript-eslint": "^8.15.0",
"vitest": "^2.1.5"
}
}