-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 loc) · 1.26 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
{
"name": "@tw-classed/mono",
"version": "1.0.0",
"description": "Monorepo for tw classed",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"prepublish": "turbo run build --filter=./packages/*",
"prerelease": "pnpm run build --filter=./packages/* && pnpm run test --filter=./packages/*",
"ci:version": "pnpm changeset version",
"ci:publish": "pnpm run prerelease && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sannajammeh/tw-classed.git"
},
"keywords": [],
"author": "Sanna Jammeh",
"license": "MIT",
"bugs": {
"url": "https://github.com/sannajammeh/tw-classed/issues"
},
"homepage": "https://github.com/sannajammeh/tw-classed#readme",
"packageManager": "[email protected]",
"dependencies": {
"@changesets/cli": "^2.27.1",
"turbo": "^1.11.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"cz-conventional-changelog": "^3.3.0",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
}
}