forked from usertour/usertour
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·47 lines (47 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·47 lines (47 loc) · 1.43 KB
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
{
"name": "usertour",
"homepage": "https://www.usertour.io",
"author": "Usertour, Inc.",
"license": "AGPL-3.0",
"private": true,
"scripts": {
"dev:web": "pnpm --filter ./apps/web dev",
"dev:sdk": "pnpm --filter ./apps/sdk dev",
"dev:server": "pnpm --filter ./apps/server start:dev",
"build:web": "pnpm --filter ./apps/web build",
"build:sdk": "pnpm --filter ./apps/sdk build",
"build:sdk:iife": "pnpm --filter ./apps/sdk build:iife",
"build:sdk:dev": "pnpm --filter ./apps/sdk build:dev",
"build:sdk:dev:iife": "pnpm --filter ./apps/sdk build:dev:iife",
"build:server": "pnpm --filter ./apps/server build",
"lint": "biome lint .",
"lint:fix": "biome lint . --write",
"format": "biome format .",
"format:fix": "biome format . --write",
"check": "biome check .",
"check:fix": "biome check . --write",
"prepare": "husky install"
},
"devDependencies": {
"autoprefixer": "^10.4.16",
"eslint": "^8.51.0",
"postcss": "^8.4.31",
"prettier": "^2.8.8",
"tailwindcss": "^3.4.10",
"tsup": "^7.2.0",
"turbo": "latest",
"@biomejs/biome": "^1.9.4",
"lint-staged": "^15.2.10",
"husky": "^9.1.6",
"commitizen": "^4.2.4"
},
"packageManager": "pnpm@9.0.6",
"dependencies": {
"rimraf": "^5.0.5",
"tailwindcss-animate": "^1.0.7"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": ["biome check --write"],
"*.json": ["biome format --write"]
}
}