forked from vitest-dev/vitest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.83 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@vitest/monorepo",
"version": "0.8.0",
"private": true,
"description": "A blazing fast unit test framework powered by Vite",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"build": "pnpm -r --filter {packages} run build",
"ci": "ni && nr typecheck && nr lint && nr build && nr test:all",
"dev": "pnpm -r --parallel --filter vitest --filter ui --filter web-worker run dev",
"docs": "npm -C docs run dev",
"docs:build": "npm -C docs run build",
"docs:serve": "npm -C docs run serve",
"docs:https": "npm -C docs run preview-https",
"docs:examples": "esmo scripts/update-examples.ts",
"docs:contributors": "esmo scripts/update-contributors.ts",
"postinstall": "pnpm -C examples/vue2 i",
"lint": "eslint --ext .",
"lint:fix": "nr lint --fix",
"release": "bumpp package.json packages/*/package.json --commit --push --tag && pnpm -r publish --access public",
"test": "vitest --api -r test/core",
"test:run": "vitest run -r test/core",
"test:all": "cross-env CI=true pnpm -r --stream --filter !@vitest/monorepo run test -- --allowOnly",
"test:ci": "cross-env CI=true pnpm -r --stream --filter !@vitest/monorepo --filter !test-fails run test -- --allowOnly",
"typecheck": "tsc --noEmit",
"ui:build": "vite build packages/ui",
"ui:dev": "vite packages/ui",
"ui:test": "npm -C packages/ui run test:run"
},
"devDependencies": {
"@antfu/eslint-config": "^0.18.9",
"@antfu/ni": "^0.14.0",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/lodash": "^4.14.180",
"@types/node": "^17.0.21",
"bumpp": "^7.1.1",
"c8": "^7.11.0",
"cross-env": "^7.0.3",
"esbuild": "~0.14.28",
"eslint": "^8.12.0",
"esno": "^0.14.1",
"fast-glob": "^3.2.11",
"if-node-version": "^1.1.1",
"magic-string": "^0.26.1",
"node-fetch": "^3.2.3",
"npm-run-all": "^4.1.5",
"ohmyfetch": "^0.4.15",
"pathe": "^0.2.0",
"pnpm": "^6.32.3",
"rimraf": "^3.0.2",
"rollup": "^2.70.1",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-esbuild": "^4.8.2",
"rollup-plugin-license": "^2.6.1",
"typescript": "^4.6.3",
"vite": "2.9.0-beta.9",
"vitepress": "^0.22.3",
"vitest": "workspace:*",
"vue": "^3.2.31"
},
"pnpm": {
"overrides": {
"vite": "^2.8.6"
}
},
"vite": {
"optimizeDeps": {
"include": [
"@vueuse/core",
"birpc",
"codemirror",
"codemirror/addon/display/placeholder",
"codemirror/mode/javascript/javascript",
"codemirror/mode/jsx/jsx",
"codemirror/mode/xml/xml",
"d3-graph-controller",
"flatted",
"floating-vue",
"splitpanes",
"vue-router"
]
}
}
}