-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
38 lines (38 loc) · 1.19 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
33
34
35
36
37
38
{
"name": "@reactivue/monorepo",
"description": "Using Vue Composition API in React components.",
"author": "Anthony Fu<https://github.com/antfu>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"dev": "npm -C ./packages/reactivue run dev",
"dev:vite": "npm -C ./examples/react-ts-vite run dev",
"build:vite": "npm -C ./examples/react-ts-vite run build",
"serve:vite": "npm -C ./examples/react-ts-vite run serve",
"build": "npm -C ./packages/reactivue run build && cpy README.md ./packages/reactivue",
"release": "cd ./packages/reactivue && npm run build && npx bumpp --commit --tag --push && yarn publish --non-interactive",
"postinstall": "yarn-deduplicate || exit 0",
"test": "npm -C ./packages/reactivue run test"
},
"devDependencies": {
"@antfu/eslint-config-ts": "^0.6.2",
"cpy-cli": "^3.1.1",
"eslint": "^7.23.0",
"eslint-plugin-react": "^7.23.1",
"yarn-deduplicate": "^3.1.0"
},
"eslintConfig": {
"extends": [
"@antfu/eslint-config-ts",
"plugin:react/recommended"
],
"rules": {
"react/prop-types": "off",
"no-use-before-define": "off"
}
}
}