-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
44
45
46
47
{
"name": "monorepo-starter",
"version": "0.2.1",
"private": true,
"description": "monorepo-starter",
"keywords": [],
"license": "MIT",
"author": "",
"main": "index.js",
"scripts": {
"dev": "pnpm -r --parallel --filter !playground run dev",
"build": "pnpm -r --parallel --filter !playground run build",
"lint": "eslint \"**/*.{ts,vue,mjs}\"",
"lint:fix": "pnpm lint -- --fix",
"play": "pnpm -C playground run dev",
"build:play": "pnpm -C playground run build",
"release": "bumpp package.json packages/*/package.json --commit --push --tag",
"test": "jest",
"test:update": "jest -u"
},
"devDependencies": {
"@bryce-loskie/eslint-config": "^1.0.7",
"@bryce-loskie/utils": "^0.1.21",
"@iconify-json/carbon": "^1.1.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@vitejs/plugin-vue": "^2.2.4",
"@vueuse/core": "^8.0.0",
"bumpp": "^7.1.1",
"eslint": "^8.11.0",
"eslint-plugin-jest": "^26.1.1",
"esno": "^0.14.1",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"tsup": "^5.12.1",
"typescript": "^4.6.2",
"unocss": "^0.28.0",
"unplugin-auto-import": "^0.6.4",
"unplugin-vue-components": "^0.18.0",
"vite": "^2.8.6",
"vite-plugin-inspect": "^0.4.3",
"vite-plugin-pages": "^0.21.4",
"vue": "^3.2.31",
"vue-router": "^4.0.13"
}
}