generated from JoshuaKGoldberg/create-typescript-app
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
82 lines (82 loc) · 2.35 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
{
"name": "tidelift-me-up-site",
"version": "0.0.0",
"description": "Web app to check if your npm packages are eligible for Tidelift funding. 💸",
"repository": {
"type": "git",
"url": "https://github.com/JoshuaKGoldberg/tidelift-me-up-site"
},
"license": "MIT",
"author": {
"name": "JoshuaKGoldberg",
"email": "npm@joshuakgoldberg.com"
},
"type": "module",
"scripts": {
"build": "next build",
"dev": "next dev",
"format": "prettier \"**/*\" --ignore-unknown",
"lint": "next lint --max-warnings 0 --report-unused-disable-directives error",
"lint:knip": "knip",
"lint:md": "markdownlint \"**/*.md\" \".github/**/*.md\" --rules sentences-per-line",
"lint:package-json": "npmPkgJsonLint .",
"lint:packages": "pnpm dedupe --check",
"lint:spelling": "cspell \"**\" \".github/**/*\"",
"prepare": "husky install",
"start": "next start",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"clsx": "^2.0.0",
"next": "^14.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tidelift-me-up": "^0.4.2"
},
"devDependencies": {
"@next/eslint-plugin-next": "^15.0.0",
"@types/eslint": "^8.44.7",
"@types/node": "22.10.1",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^8.0.0",
"cspell": "^8.0.0",
"eslint": "^8.53.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsdoc": "^50.0.0",
"eslint-plugin-jsonc": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-perfectionist": "^2.3.0",
"eslint-plugin-regexp": "^2.1.1",
"eslint-plugin-yml": "^1.10.0",
"husky": "^9.0.0",
"jsonc-eslint-parser": "^2.4.0",
"knip": "5.39.2",
"lint-staged": "^15.1.0",
"markdownlint": "^0.36.0",
"markdownlint-cli": "^0.43.0",
"npm-package-json-lint": "^8.0.0",
"npm-package-json-lint-config-default": "^7.0.0",
"prettier": "^3.0.3",
"prettier-plugin-curly": "^0.3.0",
"prettier-plugin-packagejson": "^2.4.6",
"sentences-per-line": "^0.2.1",
"typescript": "^5.2.2",
"yaml-eslint-parser": "^1.2.2"
},
"packageManager": "pnpm@9.14.4",
"engines": {
"node": ">=18"
},
"publishConfig": {
"provenance": true
}
}