-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
54 lines (54 loc) · 1.64 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
{
"name": "root",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build:all": "pnpm nx run-many --target=build --all --exclude docs --exclude vue-blog",
"lint:all": "pnpm nx run-many --target=lint --all",
"lint:fix:all": "pnpm nx run-many --target=lint:fix --all",
"docs": "npm -C docs run dev",
"docs:build": "npm -C docs run build",
"docs:now": "npm -C docs run now",
"docs:check": "npm -C docs run check",
"blog": "npm run -C playground/the-vue-point dev",
"blog:build": "npm run -C playground/the-vue-point build",
"blog:now": "npm run -C playground/the-vue-point now",
"blog:check": "npm -C playground/the-vue-point run check",
"release": "node scripts/release.cjs",
"changelog": "node scripts/changelog.cjs",
"test": "packages/iles/bin/iles.js test"
},
"devDependencies": {
"@antfu/eslint-config": "^2.24.0",
"@nrwl/cli": "^15.9.3",
"@nrwl/nx-cloud": "^19.1.0",
"@nx/workspace": "^19.7.3",
"concurrently": "^8.2.2",
"conventional-changelog-cli": "^5.0.0",
"enquirer": "^2.4.1",
"eslint": "^9.8.0",
"eslint-plugin-format": "^0.1.2",
"eslint-plugin-solid": "^0.14.1",
"eslint-plugin-svelte": "^2.43.0",
"execa": "^9.3.0",
"iles": "workspace:*",
"minimist": "^1.2.8",
"pkg-dir": "^8.0.0",
"semver": "^7.6.3",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"pnpm": {
"overrides": {
"@typescript-eslint/typescript-estree": "8.5.0",
"esbuild": "0.24.0",
"vite": "5.4.10"
},
"peerDependencyRules": {
"allowedVersions": {
"eslint": "9"
}
}
}
}