forked from scio-labs/inkathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "@inkathon/monorepo",
"description": "Full-Stack DApp Boilerplate for Substrate-based networks and ink! Smart Contracts",
"version": "0.0.1",
"homepage": "https://inkathon.xyz",
"repository": {
"type": "git",
"url": "git+https://github.com/scio-labs/inkathon"
},
"bugs": {
"url": "https://github.com/scio-labs/inkathon/issues"
},
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=16 <=18"
},
"scripts": {
"dev": "pnpm run --filter frontend dev",
"build": "pnpm run --filter frontend build",
"start": "pnpm run --filter frontend start",
"lint": "pnpm run --filter frontend lint",
"lint:fix": "pnpm run --filter frontend lint:fix",
"prepare": "husky install"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"next": "^13.0.0"
}
}
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"typescript": "^4.9.5",
"next": "^13.1.6"
}
}