-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.16 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
{
"name": "@vueginate/root",
"packageManager": "pnpm@8.1.1",
"private": "true",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run --workspace vueginate build",
"test": "npm run --workspace vueginate test",
"type-check": "run-p type-check:app type-check:demo",
"type-check:app": "npm run --workspace vueginate type-check",
"type-check:demo": "npm run --workspace @vueginate/demo type-check",
"demo": "npm run --workspace @vueginate/demo dev",
"demo:build": "npm run --workspace @vueginate/demo build",
"demo:type-check": "npm run --workspace @vueginate/demo type-check",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write packages/*/src/**/* packages/vueginate/tests .eslintrc.cjs **/*.config.ts"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@types/node": "^18.14.2",
"autoprefixer": "^10.4.14",
"eslint": "^8.34.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.23",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.7",
"tailwindcss": "^3.3.1",
"typescript": "~4.8.4"
}
}