-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
54 lines (54 loc) · 1.48 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
45
46
47
48
49
50
51
52
53
54
{
"name": "auth-monorepo",
"description": "A monorepo for Farcaster Auth",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"examples/*",
"packages/*",
"test/*"
],
"scripts": {
"build": "./node_modules/.bin/turbo run build",
"clean": "./node_modules/.bin/turbo run clean",
"dev": "./node_modules/.bin/turbo run dev --parallel",
"test": "./node_modules/.bin/turbo run test",
"test:ci": "./node_modules/.bin/turbo run test:ci -- --passWithNoTests",
"lint": "./node_modules/.bin/turbo run lint --parallel",
"lint:ci": "./node_modules/.bin/turbo run lint:ci --parallel",
"prepare": "husky install",
"version-packages": "changeset version",
"release-packages": "yarn build && changeset publish",
"release-all": "yarn build && changeset publish && changeset tag"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=18.7"
},
"lint-staged": {
"*.ts": [
"biome check"
]
},
"devDependencies": {
"@biomejs/biome": "~1.1.0",
"@changesets/changelog-git": "^0.2.0",
"@changesets/cli": "^2.27.1",
"@swc/cli": "^0.1.63",
"@swc/core": "^1.3.100",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.3",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"rimraf": "^5.0.5",
"semver": "^7.6.0",
"ts-node": "^10.9.1",
"tsup": "^8.0.1",
"turbo": "^1.11.0",
"typescript": "^5.3.3"
}
}