-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
66 lines (66 loc) · 2.09 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
{
"name": "@previewjs/workspace",
"author": {
"name": "François Wouts",
"email": "[email protected]"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/fwouts/previewjs"
},
"bugs": {
"url": "https://github.com/fwouts/previewjs/issues"
},
"homepage": "https://previewjs.com",
"type": "module",
"scripts": {
"check-deps": "node --loader ts-node/esm scripts/check-deps.ts",
"check-licenses": "node --loader ts-node/esm scripts/check-licenses.ts",
"release-apps": "node --loader ts-node/esm scripts/release-apps.ts",
"release-components": "node --loader ts-node/esm scripts/release-components.ts",
"vscode:build:dev": "cd ./integrations/vscode && pnpm build:dev",
"vscode:build:dev:pro": "cd ./integrations/vscode && pnpm build:dev:pro",
"lint": "eslint --max-warnings 0 '**/*.ts' '**/*.tsx'",
"vite-ecosystem-ci:build": "turbo build --filter=@previewjs/config-helper-nextjs",
"vite-ecosystem-ci:before-test": "cd testing && playwright install",
"vite-ecosystem-ci:test": "export ONLY_REACT_VERSION=18 && turbo e2e-test --filter=@previewjs/plugin-react -- --grep-invert=error --retries=3 --workers=2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.14.0",
"@types/inquirer": "^9.0.7",
"@types/license-checker": "^25.0.6",
"@types/node": "^20.17.9",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"assert-never": "^1.3.0",
"depcheck": "^1.4.7",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"execa": "^8.0.1",
"globals": "^15.13.0",
"inquirer": "^12.2.0",
"license-checker": "^25.0.1",
"prettier": "^2.8.8",
"ts-node": "^10.9.2",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"packageManager": "[email protected]",
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"react": "^18",
"react-dom": "^18"
}
},
"packageExtensions": {
"create-react-class": {
"peerDependencies": {
"react": "*"
}
}
}
}
}