forked from farcasterxyz/hub-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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
{
"name": "hub",
"description": "A monorepo for the Farcaster Hub",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"app",
"packages/*"
],
"scripts": {
"build": "./node_modules/.bin/turbo run build",
"dev": "./node_modules/.bin/turbo run dev --parallel",
"flatc": "flatc --ts --ts-flat-files --gen-object-api -o packages/flatbuffers/src/generated packages/flatbuffers/src/schemas/*.fbs",
"test": "./node_modules/.bin/turbo run test --parallel",
"test:ci": "./node_modules/.bin/turbo run test:ci --parallel -- --passWithNoTests",
"lint": "./node_modules/.bin/turbo run lint --parallel",
"prepare": "husky install"
},
"engines": {
"npm": ">=8.0.0",
"node": "^18.7.0"
},
"dependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.24",
"@swc/jest": "^0.2.24",
"@types/jest": "^29.0.2",
"@types/node": "^18.7.14",
"husky": "^8.0.1",
"jest": "^29.0.3",
"lint-staged": "^13.0.3",
"ts-node": "^10.9.1",
"turbo": "^1.6.3",
"typescript": "4.9.4"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}