forked from iamvishnusankar/next-sitemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.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
{
"name": "next-sitemap-workspace",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/iamvishnusankar/next-sitemap.git",
"author": "Vishnu Sankar",
"license": "MIT",
"private": true,
"type": "module",
"workspaces": {
"packages": [
"packages/*",
"examples/*",
"docs"
]
},
"scripts": {
"clean": "tsc --build --clean",
"dev:test": "bun test --watch",
"dev:tsc": "tsc --build --watch",
"build": "turbo run deploy --force",
"test": "bun test --ci --coverage --verbose",
"lint": "eslint .",
"prettier:check": "prettier --check \"**/*.{js,mjs,cjs,jsx,json,ts,tsx,md,mdx,css,html,yml,yaml,scss,less,graphql,graphqls,gql}\"",
"format": "prettier --write \"**/*.{js,mjs,cjs,jsx,json,ts,tsx,md,mdx,css,html,yml,yaml,scss,less,graphql,graphqls,gql}\""
},
"devDependencies": {
"@corex/workspace": "^4.0.43",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"eslint-config-next": "^14.0.0",
"fast-xml-parser": "^4.3.2",
"prettier": "^3.0.3",
"turbo": "^1.10.16"
}
}