forked from fwouts/previewjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2 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
{
"name": "@previewjs/workspace",
"author": {
"name": "François Wouts",
"email": "f@zenc.io"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/fwouts/previewjs"
},
"bugs": {
"url": "https://github.com/fwouts/previewjs/issues"
},
"homepage": "https://previewjs.com",
"scripts": {
"check-deps": "ts-node scripts/check-deps.ts",
"check-licenses": "ts-node scripts/check-licenses.ts",
"release-apps": "ts-node scripts/release-apps.ts",
"release-components": "ts-node scripts/release-components.ts",
"vscode:build:dev": "turbo build && cd ./integrations/vscode && pnpm build:dev",
"lint": "eslint --max-warnings 0 '**/*.ts' '**/*.tsx'",
"vite-ecosystem-ci:build": "pnpm turbo build --filter=@previewjs/config-helper-nextjs",
"vite-ecosystem-ci:before-test": "cd testing && pnpm playwright install && cd - && cd $INIT_CWD/../../vite/packages/vite && pnpm add -D ts-node",
"vite-ecosystem-ci:test": "export ONLY_REACT_VERSION=18 && pnpm turbo e2e-test --filter=@previewjs/plugin-react -- --retries=3 --workers=2"
},
"devDependencies": {
"@types/inquirer": "8.2.5",
"@types/license-checker": "25.0.3",
"@types/node": "18.11.10",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"assert-never": "1.2.1",
"depcheck": "^1.4.3",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"execa": "5.1.1",
"inquirer": "8.2.5",
"license-checker": "25.0.1",
"pnpm": "7.18.0",
"prettier": "2.8.0",
"ts-node": "10.9.1",
"turbo": "1.6.3",
"typescript": "4.9.3"
},
"packageManager": "pnpm@7.18.0",
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"react": "18",
"react-dom": "18"
}
},
"packageExtensions": {
"create-react-class": {
"peerDependencies": {
"react": "*"
}
}
}
}
}