-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 4.22 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
{
"name": "strapi-ts-monorepo",
"version": "1.0.0",
"private": true,
"description": "Strapi TS Monorepo Template",
"keywords": [
"ts",
"monorepo",
"production",
"template",
"strapi"
],
"homepage": "https://github.com/timelessco/strapi-ts-monorepo",
"bugs": {
"url": "https://github.com/timelessco/strapi-ts-monorepo/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timelessco/strapi-ts-monorepo.git"
},
"license": "MIT",
"author": {
"name": "Timeless // Navin Moorthy",
"email": "[email protected]",
"url": "https://timeless.co/"
},
"type": "module",
"workspaces": [
"packages/*",
"apps/*",
"apps/cms-strapi/src/plugins/*"
],
"scripts": {
"build": "turbo build",
"changeset": "changeset",
"clean": "del-cli **/.turbo",
"clean:all": "turbo clean && yarn nuke:node_modules",
"commit": "gacp",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"deps:check": "yarn dlx @yarnpkg/[email protected] .",
"dev": "turbo dev",
"dev:admin": "turbo dev:admin",
"format": "turbo format:eslint format:md format:prettier",
"format:eslint": "eslint --max-warnings 0 --ignore-path .gitignore --cache --report-unused-disable-directives --color --fix .",
"format:md": "markdownlint-cli2 --fix '**/*.md' '.github/**/*.md' '#**/node_modules/**' '#apps/cms-strapi/.cache/**' '#**/CHANGELOG.md'",
"format:prettier": "prettier --write --cache --cache-location=.prettiercache --list-different --ignore-unknown .",
"github-release": "ts-node scripts/create-release-from-tags.ts",
"postinstall": "is-ci || yarn husky install",
"lint": "yarn build && turbo lint:prettier lint:eslint lint:types lint:md lint:knip lint:package-json lint:spelling",
"lint:eslint": "eslint --max-warnings 0 --ignore-path .gitignore --cache --report-unused-disable-directives --ignore-path .gitignore --color .",
"lint:knip": "knip --production",
"lint:md": "markdownlint-cli2 '**/*.md' '.github/**/*.md' '#**/node_modules/**' '#apps/cms-strapi/.cache/**' '#**/CHANGELOG.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",
"nuke:node_modules": "rimraf --glob '**/node_modules'",
"populate:dictionary": "del-cli project-words.txt && cspell --words-only --unique --gitignore --cache --dot \"**/*\" | sort --ignore-case >> project-words.txt",
"release": "yarn build && changeset publish && git push --follow-tags && yarn github-release",
"start": "turbo start",
"test": "turbo test",
"update": "taze -rI major",
"update:check": "taze -r major"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@babel/plugin-syntax-import-assertions": "7.22.5",
"@changesets/cli": "2.26.2",
"@changesets/get-github-info": "0.5.2",
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
"@ianvs/prettier-plugin-sort-imports": "4.1.0",
"@npmcli/promise-spawn": "6.0.2",
"@types/node": "20.4.4",
"@typescript-eslint/experimental-utils": "5.62.0",
"all-contributors-cli": "6.26.1",
"cspell": "6.31.2",
"del-cli": "5.0.0",
"dotenv": "16.3.1",
"eslint": "8.45.0",
"eslint-config-canonical": "41.1.3",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-jsonc": "2.9.0",
"eslint-plugin-toml": "0.5.0",
"eslint-plugin-yml": "1.8.0",
"gacp": "3.0.3",
"get-monorepo-packages": "1.2.0",
"husky": "8.0.3",
"is-ci": "3.0.1",
"jsonc-eslint-parser": "2.3.0",
"knip": "2.17.0",
"lint-staged": "13.2.3",
"markdownlint": "0.29.0",
"markdownlint-cli2": "0.8.1",
"npm-package-json-lint": "7.0.0",
"npm-package-json-lint-config-default": "6.0.0",
"prettier": "3.0.0",
"prettier-plugin-packagejson": "2.4.5",
"rimraf": "5.0.1",
"taze": "0.11.2",
"toml-eslint-parser": "0.6.0",
"ts-node": "10.9.1",
"turbo": "1.10.11",
"typescript": "5.1.6",
"yaml-eslint-parser": "1.2.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.16.0",
"npm": "please-use-yarn",
"yarn": ">=1.22.0"
},
"gacp": {
"add": false,
"push": false,
"emoji": "emoji",
"editor": false
}
}