-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 932 Bytes
/
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
{
"name": "mdxe-plugins",
"private": true,
"scripts": {
"dev": "turbo dev --filter=example-react",
"docs:dev": "turbo dev --filter=docs",
"docs:build": "turbo build --filter=docs",
"example:build": "turbo build --filter=example-react",
"lint": "turbo lint",
"build": "turbo build --filter=mdxe-plugin-highlight",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"preview": "turbo preview --filter=example-react",
"fpreview": "turbo preview --filter=example-react --force",
"test": "npx playwright test",
"test:ui": "npx playwright test --ui",
"deploy": "bash ./bin/deploy.sh mdxe-plugin-highlight"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
"@types/node": "^20.11.0",
"prettier": "^3.1.1",
"turbo": "^2.0.0",
"typescript": "^5.4.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.1.4"
}