-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "getlicensed",
"private": true,
"license": "AGPL-3.0",
"version": "0.0.0",
"workspaces": [
"apps/*",
"packages/*",
"internal/*"
],
"author": "Maxence Maireaux",
"scripts": {
"prepare": "husky",
"build": "dotenv -e .env -- turbo build",
"dev": "dotenv -e .env -- pnpm run db:migrate && dotenv -e .env -- turbo dev",
"test": "dotenv -e .env -- turbo test",
"fmt": "biome format . --write && biome check . --apply",
"bump-versions": "pnpm changeset version && pnpm install"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@changesets/cli": "^2.27.1",
"@types/node": "^20.12.10",
"cz-conventional-changelog": "^3.3.0",
"dotenv-cli": "^7.4.1",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"turbo": "1.13.3"
},
"packageManager": "pnpm@8.15.5",
"engines": {
"node": ">=20"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "biome check --apply"
}
}