mirror of
https://github.com/makeplane/plane.git
synced 2026-02-25 04:35:21 +01:00
* feat: adding standard scripts for lint and format check * fix: update packages scripts * fix: adding tsup config to utils package * chore: updated build scripts in logger pacakge
20 lines
570 B
JSON
20 lines
570 B
JSON
{
|
|
"name": "@plane/services",
|
|
"version": "0.27.1",
|
|
"license": "AGPL-3.0",
|
|
"private": true,
|
|
"main": "./src/index.ts",
|
|
"scripts": {
|
|
"check:lint": "eslint . --max-warnings 0",
|
|
"check:types": "tsc --noEmit",
|
|
"check:format": "prettier --check \"**/*.{ts,tsx,md,json,css,scss}\"",
|
|
"fix:lint": "eslint . --fix",
|
|
"fix:format": "prettier --write \"**/*.{ts,tsx,md,json,css,scss}\"",
|
|
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"@plane/constants": "*",
|
|
"axios": "^1.8.3"
|
|
}
|
|
}
|