forked from codinasion-archive/codinasion-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 856 Bytes
/
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
{
"private": true,
"scripts": {
"clean": "turbo clean",
"dev": "dotenv -- turbo run dev --concurrency 16",
"lint": "turbo run lint",
"build": "turbo run build",
"build:local": "dotenv -- turbo run build",
"test": "turbo run test",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx,json}\"",
"all": "turbo lint && pnpm build:local && pnpm test && pnpm format",
"publish-packages": "pnpm build:local && turbo run lint test && changeset version && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@turbo/gen": "^1.9.7",
"dotenv-cli": "latest",
"eslint": "^7.32.0",
"eslint-config-custom": "workspace:*",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.11",
"turbo": "^1.9.9"
},
"packageManager": "[email protected]",
"name": "codinasion"
}