-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.12 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "www.napochaan.com",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "next dev",
"wrangler:dev": "bun next-on-pages && bun wrangler pages dev --port 3000",
"prebuild": "rimraf dist && rimraf .next",
"build": "next build",
"start": "next start",
"lint": "npm-run-all -s 'lint:*'",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"lint:markup": "markuplint -p src/**/*.tsx",
"fmt": "npm-run-all -s 'fmt:*'",
"fmt:eslint": "eslint . --fix",
"fmt:prettier": "prettier --write .",
"test": "vitest --passWithNoTests",
"type-check": "tsc --noEmit",
"knip": "knip"
},
"dependencies": {
"@acab/reset.css": "^0.10.0",
"@cloudflare/next-on-pages": "^1.11.3",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-scroll-area": "^1.0.3",
"@radix-ui/react-separator": "^1.0.2",
"@radix-ui/react-toggle-group": "^1.0.3",
"@react-spring/web": "^9.7.3",
"@tabler/icons-react": "^3.0.0",
"@vanilla-extract/css": "^1.12.0",
"@vanilla-extract/css-utils": "^0.1.3",
"budoux": "^0.5.0",
"dayjs": "^1.11.11",
"fast-xml-parser": "^4.4.0",
"hex-rgb": "^5.0.0",
"next": "^14.1.4",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"use-media": "^1.4.0"
},
"devDependencies": {
"@axe-core/react": "^4.6.0",
"@cloudflare/workers-types": "^4.20240614.0",
"@markuplint/jsx-parser": "^4.4.0",
"@markuplint/react-spec": "^4.2.0",
"@naporin0624/eslint-config": "^0.14.2",
"@next/eslint-plugin-next": "^14.0.0",
"@svgr/webpack": "^8.0.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@types/eslint": "^8.21.1",
"@types/jsdom": "^21.1.0",
"@types/node": "^20.12.2",
"@types/prettier": "^2.7.2",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"@vanilla-extract/next-plugin": "^2.1.3",
"@vanilla-extract/vite-plugin": "^3.8.0",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.0.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.0.0",
"eslint-plugin-jest-dom": "^5.0.0",
"eslint-plugin-next-on-pages": "^1.11.0",
"eslint-plugin-testing-library": "^6.2.0",
"jest-extended": "^4.0.0",
"jsdom": "^23.0.0",
"knip": "^5.22.0",
"markuplint": "^4.4.0",
"npm-run-all": "^4.1.5",
"postcss-dark-theme-class": "^1.2.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-gap-properties": "^5.0.1",
"postcss-media-minmax": "^5.0.0",
"postcss-preset-env": "^9.5.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.0",
"typescript": "^5.4.5",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^1.6.0",
"vitest-axe": "^0.1.0",
"vitest-canvas-mock": "^0.2.2",
"wrangler": "^3.60.3"
},
"nextBundleAnalysis": {
"budget": 358400,
"budgetPercentIncreaseRed": 20,
"showDetails": true
},
"overrides": {
"trim": "1.0.1",
"trim-newlines": "5.0.0",
"glob-parent": "6.0.2",
"word-wrap": "1.2.5",
"@typescript-eslint/typescript-estree": "7.6.0"
},
"packageManager": "[email protected]"
}