-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.22 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.22 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@owlprotocol/veraswap",
"version": "2.0.1",
"private": true,
"description": "Owl Protocol Starter Monorepo",
"keywords": [
"pnpm",
"workspace"
],
"license": "MIT",
"author": "Leo Vigna",
"type": "module",
"scripts": {
"build": "turbo run build",
"build:force": "turbo run build --force",
"dev": "mprocs",
"dev:supersim": "mprocs -c mprocs-supersim.yaml",
"start": "mprocs",
"clean": "turbo run clean",
"clean:node_modules": "rimraf node_modules ./**/node_modules",
"test": "turbo run test",
"test:force": "turbo run test --force",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"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",
"turbo:login": "turbo login",
"turbo:link": "turbo link",
"changeset:add": "changeset add",
"ci:version": "changeset version",
"ci:publish": "pnpm publish -r"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@esbuild-plugins/node-resolve": "^0.1.4",
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.22.0",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"depcheck": "^1.4.7",
"dotenv": "^16.4.7",
"dotenv-vault": "1.25.0",
"esbuild": "^0.19.12",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.19",
"glob": "10.3.10",
"globals": "^16.0.0",
"husky": "^9.1.7",
"mprocs": "^0.7.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"rimraf": "^3.0.2",
"syncpack": "^12.4.0",
"turbo": "^2.4.0"
},
"packageManager": "pnpm@9.12.2",
"engines": {
"npm": ">=v10.5.0",
"pnpm": ">=9.12.2",
"node": "^22.0.0"
}
}