-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
35 lines (35 loc) · 968 Bytes
/
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
{
"name": "link",
"homepage": "https://tiny.ink/",
"author": "Use Ink <[email protected]>",
"private": true,
"workspaces": [
"frontend",
"contracts"
],
"engines": {
"node": "20",
"pnpm": "8"
},
"scripts": {
"dev": "pnpm run -F frontend dev",
"build": "pnpm run -F frontend build",
"start": "pnpm run -F frontend start",
"node": "pnpm run -F contracts node",
"type-check": "pnpm run -F '*' type-check",
"sync-types": "pnpm run -F '*' sync-types && pnpm install",
"lint": "pnpm run -F '*' lint",
"lint:fix": "pnpm run -F '*' lint:fix",
"lint:format": "pnpm run -F '*' lint:format",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"lint-staged": "^15.2.2",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.4.5",
"typesync": "^0.12.1"
}
}