-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
37 lines (37 loc) · 1.09 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
{
"name": "@inkathon/monorepo",
"description": "Full-Stack DApp Boilerplate for ink! Smart Contracts",
"homepage": "https://inkathon.xyz",
"author": "Scio Labs <[email protected]> (https://scio.xyz)",
"private": true,
"workspaces": [
"frontend",
"contracts"
],
"engines": {
"node": ">=18 <=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.5",
"lint-staged": "^15.2.7",
"next": "^14.2.4",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.4.5",
"typesync": "^0.12.1"
}
}