-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.98 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
68
69
70
71
{
"name": "next",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.10.0"
},
"packageManager": "pnpm@8.15.6",
"scripts": {
"dev": "next dev --turbo",
"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.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.13",
"@tailwindcss/typography": "^0.5.15",
"@yobta/stores": "0.3.2",
"@yobta/ui": "^0.0.51",
"@yobta/validator": "^1.0.0",
"@yobta/validator-react": "^0.0.2",
"clsx": "^2.1.1",
"lodash": "^4.17.21",
"next": "^14.2.13",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-use": "^17.5.1",
"sass": "^1.79.4",
"typescript-eslint": "^8.7.0",
"webpack": "^5.95.0"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@logux/eslint-config": "^53.4.0",
"@types/lodash": "^4.17.9",
"@types/mdx": "^2.0.13",
"@types/node": "22.7.4",
"@types/react": "18.3.10",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@vitest/coverage-v8": "^2.1.1",
"autoprefixer": "^10.4.20",
"c8": "^10.1.2",
"dotenv": "^16.4.5",
"eslint": "9.11.1",
"eslint-config-next": "14.2.13",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-perfectionist": "^3.7.0",
"eslint-plugin-prefer-let": "^4.0.0",
"eslint-plugin-promise": "^7.1.0",
"happy-dom": "^15.7.4",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"styled-jsx-plugin-postcss": "^4.0.1",
"tailwindcss": "^3.4.13",
"typescript": "5.6.2",
"vitest": "^2.1.1"
}
}