forked from bcakmakoglu/vue-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 987 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
29
30
{
"name": "@vue-flow/monorepo",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "pnpm --dir examples/vite dev",
"docs": "pnpm --dir docs dev",
"changelog": "git-cliff --output CHANGELOG.md && git add CHANGELOG.md && git commit -m \"chore: Update CHANGELOG.md\"",
"build:docs": "turbo docs",
"build": "turbo build",
"test": "turbo test",
"lint": "turbo lint",
"typedocs": "turbo run build && pnpm --dir docs typedocs",
"ci:version": "changeset version",
"ci:publish": "turbo lint && turbo build && turbo test && changeset publish"
},
"devDependencies": {
"@antfu/eslint-config": "^0.35.1",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.3",
"shx": "^0.3.4",
"turbo": "^1.7.2",
"typescript": "^4.9.5"
}
}