-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.04 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
{
"name": "vite-plugin-posthog",
"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=vite-plugin-posthog",
"fbuild": "turbo build --filter=vite-plugin-posthog --force",
"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 vite-plugin-posthog"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
"@types/node": "^20.11.0",
"prettier": "^3.1.1",
"turbo": "latest",
"typescript": "^5.4.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@8.19.2",
"workspaces": [
"apps/*",
"packages/*"
]
}