forked from simonwep/viselect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.37 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
39
40
41
42
43
{
"name": "viselect-root",
"author": "Simon Reinisch <[email protected]>",
"private": true,
"license": "MIT",
"scripts": {
"dev": "lerna run dev",
"build": "lerna run build",
"lint": "eslint 'packages/**/{src,demo}/*.{ts,tsx,vue,js}'",
"lint:fix": "npm run lint -- --fix",
"test:ci": "npm run lint:fix && npm run build"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"@vue/eslint-config-typescript": "^11.0.2",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.2.1",
"@rollup/plugin-alias": "^4.0.2",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-react": "^3.0.0",
"@preact/preset-vite": "^2.5.0",
"@vue/compiler-sfc": "^3.2.45",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"eslint": "^8.30.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-vue": "^9.8.0",
"lerna": "^6.3.0",
"rollup": "^3.9.0",
"rollup-plugin-ts": "^3.0.2",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vue": "^3.2.45",
"vue-tsc": "^1.0.18",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"preact": "^10.11.3"
}
}