forked from danielroe/nuxt-vitest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.47 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
{
"private": true,
"packageManager": "pnpm@8.2.0",
"scripts": {
"build": "pnpm dev:prepare && pnpm run --filter=./packages/* -r build",
"stub": "pnpm run --filter=./packages/* -r stub",
"dev:prepare": "pnpm stub && pnpm nuxi prepare playground",
"dev": "pnpm run build && pnpm -C playground test:unit",
"lint": "pnpm lint:all:eslint && pnpm lint:all:prettier",
"lint:all:eslint": "pnpm lint:eslint --ext .ts,.js,.mjs,.cjs .",
"lint:all:prettier": "pnpm lint:prettier \"**/*.{js,json,ts}\"",
"lint:eslint": "eslint --fix",
"lint:prettier": "prettier --write --loglevel warn",
"play": "pnpm run stub && pnpm -C playground dev",
"prepare": "husky install",
"test": "pnpm -C playground test",
"release": "release-it"
},
"devDependencies": {
"@nuxt/eslint-config": "0.1.1",
"@nuxt/schema": "3.3.2",
"@release-it-plugins/workspaces": "3.2.0",
"@release-it/conventional-changelog": "5.1.1",
"@vitest/coverage-c8": "0.30.1",
"conventional-changelog-conventionalcommits": "5.0.0",
"eslint": "8.38.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"lint-staged": "13.2.1",
"nuxt": "3.3.2",
"prettier": "2.8.7",
"release-it": "15.10.1",
"unbuild": "1.2.0",
"vitest": "0.30.1",
"vue": "3.2.47"
},
"pnpm": {
"overrides": {
"vitest-environment-nuxt": "workspace:*",
"nuxt-vitest": "workspace:*"
}
},
"version": "0.6.9"
}