-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
152 lines (152 loc) · 4.75 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "next-ts-app",
"version": "5.1.0",
"private": true,
"description": "Next TS App Template",
"keywords": [
"react",
"next-ts-app",
"typescript"
],
"bugs": {
"url": "https://github.com/timelessco/next-ts-app/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timelessco/next-ts-app.git"
},
"license": "MIT",
"author": {
"name": "Timeless",
"email": "hello@timeless.co",
"url": "https://timeless.co/"
},
"type": "module",
"scripts": {
"build": "npx turbo run build:next",
"postbuild": "next-sitemap --config next-sitemap.config.cjs",
"build:analyze": "ANALYZE=true pnpm build && pnpm start",
"build:ci": "SKIP_ENV_VALIDATION=true next build",
"build:next": "next build",
"build:sourcemap": "SOURCEMAP=true pnpm build && source-map-explorer .next/static/**/*.js && pnpm start",
"build:start": "pnpm build && pnpm start",
"commit": "gacp",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"dev": "next dev",
"dev:sourcemap": "SOURCEMAP=true pnpm dev",
"format": "npx turbo run format:eslint format:css format:md format:prettier",
"format:css": "stylelint '**/*.css' --fix --cache --color -f verbose",
"format:eslint": "eslint --cache --report-unused-disable-directives --color . --fix",
"format:md": "markdownlint --fix **/*.md \".github/**/*.md\"",
"format:prettier": "prettier --write --cache --cache-location=.prettiercache --list-different --ignore-unknown .",
"lint": "npx turbo run lint:eslint lint:types lint:css lint:md lint:knip lint:package-json lint:spelling lint:prettier",
"lint:css": "stylelint '**/*.css' --cache --color -f verbose",
"lint:eslint": "eslint --cache --report-unused-disable-directives --color .",
"lint:knip": "knip --production",
"lint:md": "markdownlint **/*.md \".github/**/*.md\"",
"lint:package-json": "npmPkgJsonLint .",
"lint:prettier": "prettier --check --cache --cache-location=.prettiercache --ignore-unknown .",
"lint:spelling": "cspell --dot --gitignore --cache --no-progress check \"**/*\"",
"lint:types": "tsc --noEmit",
"populate:dictionary": "del-cli project-words.txt && cspell --words-only --unique --gitignore --cache --dot \"**/*\" | sort --ignore-case >> project-words.txt",
"prepare": "husky install",
"release": "node release-it/getCommitsSinceLastRelease.js && release-it --ci",
"release:dryrun": "release-it --dry-run",
"start": "next start",
"test": "echo \"no test specified\" && exit 0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": [
"pnpm format:prettier",
"pnpm lint:spelling"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"next": "15.0.3",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@commitlint/cli": "19.0.3",
"@commitlint/config-conventional": "19.0.3",
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@next/bundle-analyzer": "15.0.1",
"@next/env": "15.0.1",
"@next/eslint-plugin-next": "15.0.1",
"@octokit/core": "6.0.1",
"@release-it/conventional-changelog": "8.0.1",
"@types/node": "18.18.6",
"@types/react": "18.2.30",
"@types/react-dom": "18.2.14",
"@typescript-eslint/experimental-utils": "5.62.0",
"all-contributors-cli": "6.26.1",
"autoprefixer": "10.4.16",
"cspell": "8.0.0",
"dedent": "1.5.1",
"del-cli": "6.0.0",
"dotenv": "16.3.1",
"eslint": "8.51.0",
"eslint-config-canonical": "42.0.1",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-jsonc": "2.10.0",
"eslint-plugin-tailwindcss": "3.13.0",
"eslint-plugin-toml": "0.6.0",
"eslint-plugin-yml": "1.10.0",
"execa": "8.0.1",
"gacp": "3.0.3",
"git-remote-origin-url": "4.0.0",
"git-url-parse": "15.0.0",
"husky": "9.0.5",
"jsonc-eslint-parser": "2.3.0",
"knip": "5.0.1",
"lint-staged": "15.0.2",
"markdownlint": "0.31.1",
"markdownlint-cli": "0.37.0",
"next-sitemap": "4.2.3",
"npm-package-json-lint": "8.0.0",
"npm-package-json-lint-config-default": "7.0.0",
"postcss": "8.4.31",
"prettier": "3.0.3",
"prettier-plugin-packagejson": "2.4.6",
"prettier-plugin-tailwindcss": "0.5.6",
"release-it": "17.0.0",
"sharp": "0.32.6",
"source-map-explorer": "2.5.3",
"stylelint": "16.0.2",
"stylelint-config-clean-order": "6.0.0",
"stylelint-config-standard": "36.0.0",
"tailwindcss": "3.3.3",
"tilg": "0.1.1",
"title-case": "4.1.1",
"toml-eslint-parser": "0.6.0",
"turbo": "1.10.16",
"typescript": "5.2.2",
"yaml-eslint-parser": "1.2.2",
"zod": "3.22.4"
},
"packageManager": "pnpm@9.13.1",
"gacp": {
"add": false,
"push": false,
"emoji": "emoji",
"editor": false
}
}