-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 880 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
27
28
{
"name": "react-ui-library",
"version": "1.0.0",
"homepage": "https://kvraamkey.github.io/react-ui-library/",
"author": "Ramki A <kvraamkeydev@gmail.com>",
"repositories": [
{
"type": "git",
"url": "git@github.com:kvraamkey/react-ui-library.git"
}
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --no-daemon",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"predeploy": "pnpm run build --filter=docs",
"deploy": "gh-pages -d apps/docs/dist"
},
"devDependencies": {
"@kvraamkey/eslint-config-custom": "workspace:*",
"eslint": "^8.29.0",
"gh-pages": "^5.0.0",
"prettier": "^2.8.0",
"turbo": "^1.10.12"
}
}