forked from vitest-dev/vitest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.86 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
48
49
50
51
52
53
{
"name": "@vitest/monorepo",
"version": "0.0.102",
"private": true,
"description": "A blazing fast unit test framework powered by Vite",
"type": "module",
"scripts": {
"build": "pnpm -r --filter {packages} run build",
"ci": "ni && nr typecheck && nr lint && nr build && nr test:all",
"dev": "pnpm -r --parallel --filter {packages} run dev",
"docs": "npm -C docs run dev",
"docs:build": "npm -C docs run build",
"docs:serve": "npm -C docs run serve",
"postinstall": "cd test/vue2 && npx pnpm i",
"lint": "eslint --ext .js,.vue,.ts .",
"lint:fix": "eslint --ext .js,.vue,.ts . --fix",
"release": "bumpp package.json packages/*/package.json --commit --push --tag && pnpm -r publish",
"test": "vitest -r test/core",
"test:all": "cross-env CI=true pnpm -r --stream --filter !vitest run test --",
"test:ci": "cross-env CI=true pnpm -r --stream --filter !vitest --filter !@vitest/test-fails run test --",
"typecheck": "pnpm -r --parallel run typecheck",
"ui:build": "vite build packages/ui",
"ui:dev": "vite packages/ui"
},
"devDependencies": {
"@antfu/eslint-config": "^0.14.0",
"@antfu/ni": "^0.12.0",
"@rollup/plugin-alias": "^3.1.8",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.1",
"@types/node": "^17.0.1",
"bumpp": "^7.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.5.0",
"esno": "^0.13.0",
"fast-glob": "^3.2.7",
"node-fetch": "^3.1.0",
"npm-run-all": "^4.1.5",
"pathe": "^0.2.0",
"pnpm": "^6.24.2",
"rimraf": "^3.0.2",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-esbuild": "^4.7.2",
"rollup-plugin-license": "^2.6.0",
"tinyspy": "^0.2.1",
"typescript": "^4.5.4",
"vite": "^2.7.4",
"vitepress": "^0.20.9",
"vitest": "workspace:*",
"vue": "3.2.26"
}
}