-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
77 lines (77 loc) · 2.16 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@taqueria/root",
"version": "0.64.1",
"description": "An easy to use opinionated tool for building, testing, and deploying Tezos software",
"main": "index.ts",
"directories": {
"test": "tests"
},
"scripts": {
"test": "yarn",
"build-types": "pnpm --filter @taqueria/protocol run build-types",
"build-all": "./bin/build-all.sh",
"build:binary": "./bin/build.sh",
"build:packages": "lerna run build",
"deploy": "TAQUERIA_DEPLOY=1 pnpm exec lerna version minor --yes && git push && git push --tags",
"build-website": "cd website && npm ci --legacy-peer-deps && npm run build",
"serve-website": "cd website && npm run serve",
"deploy-website": "cd website && npm run deploy",
"watch": "npx chokidar \"*.ts\" \"taqueria-utils/**/*.ts\" \"taqueria-protocol/**/*.ts\" -c \"npm run build\" --initial",
"build-and-watch-vscode": "npx chokidar \"*.ts\" \"taqueria-vscode-extension/**/*.ts\" \"taqueria-protocol/**/*.ts\" -c \"pnpm run compile --filter taqueria-vscode-extension\" --initial",
"prepare": "npx husky",
"format": "npx dprint fmt",
"format:check": "npx dprint check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tezostaqueria/taqueria.git"
},
"keywords": [
"taqueria",
"tezos",
"build",
"test",
"deploy",
"originate",
"pinnaclelabs",
"pinnacle-labs",
"trilitech"
],
"author": "Taqueria",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tezostaqueria/taqueria/issues"
},
"private": true,
"homepage": "https://github.com/tezostaqueria/taqueria#readme",
"devDependencies": {
"chokidar-cli": "^3.0.0",
"dprint": "^0.45.0",
"husky": "^9.0.11",
"lerna": "^8.1.8",
"lint-staged": "^15.2.10",
"module-alias": "^2.2.3",
"patch-package": "^8.0.0",
"pnpm": "^9.12.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"pnpm": {
"overrides": {
"glob": "^11.0.0",
"rimraf": "^5.0.5",
"whatwg-url": "^14.0.0",
"@taqueria/node-sdk>node-fetch": "^3.3.2"
}
},
"lint-staged": {
"*.ts": [
"npx dprint fmt --config ./dprint.json"
],
"*.tsx": [
"npx dprint fmt --config ./dprint.json"
],
"*.json": "npx dprint fmt --config ./dprint.json"
}
}