-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 945 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": "doain-root",
"private": true,
"scripts": {
"build": "run-s build:*",
"build:node": "pnpm --filter=@doain/node run dev",
"build:client": "pnpm --filter=@doain/client run dev",
"build:toolkit": "pnpm --filter=@doain/toolkit run build",
"play": "pnpm --filter=playground run dev",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"prettier": "prettier --write ./packages/**/*.{js,ts,tsx,css,scss,vue}"
},
"devDependencies": {
"@charrue/eslint-config-typescript": "^0.3.0",
"@charrue/eslint-config-vue3": "^0.2.0",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/node": "^17.0.45",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"postcss-sorting": "^6.0.0",
"prettier": "^2.8.3",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vitest": "^0.28.5"
}
}