-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.22 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
{
"private": true,
"name": "workspace",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.20.0",
"@rollup/plugin-commonjs": "^19.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vuedx/eslint-config": "^0.0.2",
"@vuedx/monorepo-tools": "^0.2.1",
"eslint": "^7.32.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"js-yaml": "^4.1.0",
"lint-staged": "^11.2.6",
"prettier": "^2.5.1",
"rollup": "^2.66.1",
"ts-jest": "^26.5.6",
"tslib": "^2.3.1",
"typescript": "4.3.2"
},
"scripts": {
"build": "rollup -c --environment BUILD:production && pnpm recursive --filter ./packages/preview-shell run build",
"dev:build": "rollup -c --environment BUILD:development",
"watch": "rollup -c -w",
"test": "jest",
"coverage": "jest --coverage",
"start": "node packages/preview/bin/preview.js packages/example",
"changeset": "changeset",
"prepare": "husky install"
},
"pnpm": {
"overrides": {
"vite": "2.5.0",
"typescript": "4.3.2"
}
}
}