-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.54 KB
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
{
"name": "@owlprotocol/owlprotocol",
"version": "0.0.0",
"private": true,
"description": "Owl Protocol Monorepo",
"keywords": [
"pnpm",
"workspace"
],
"license": "MIT",
"author": "Leo Vigna",
"type": "module",
"scripts": {
"anvil": "anvil --chain-id 1337",
"build": "turbo run build",
"dev": "turbo run dev",
"start": "turbo run start",
"clean": "turbo run clean",
"clean:node_modules": "rimraf node_modules ./**/**/node_modules",
"test": "turbo run test",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"lint:staged": "turbo run lint:staged",
"depcheck": "depcheck && turbo run depcheck",
"madge": "turbo run madge",
"syncpack": "syncpack list-mismatches",
"syncpack:fix": "syncpack fix-mismatches",
"dotenv:login": "dotenv-vault login",
"dotenv:pull": "dotenv-vault pull",
"dotenv:push": "dotenv-vault push",
"husky:install": "husky install",
"publish": "changeset publish",
"turbo:login": "turbo login",
"turbo:link": "turbo link",
"changeset:add": "changeset add",
"ci:version": "changeset version",
"ci:publish": "pnpm publish -r --publish-branch develop"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"depcheck": "^1.4.7",
"dotenv-vault": "1.25.0",
"firebase-tools": "^13.16.0",
"husky": "^7.0.4",
"rimraf": "^3.0.2",
"syncpack": "^12.3.3",
"turbo": "^2.4.0"
},
"engines": {
"npm": ">=v10.5.0",
"pnpm": ">=9.12.2",
"node": "^18.0.0"
},
"packageManager": "pnpm@9.12.2"
}