generated from scio-labs/inkathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
44
{
"name": "proownas-dao",
"description": "Fullstack Dapp for creating a DAO, built on NextJS and ink! WASM",
"version": "0.0.1",
"homepage": "https://proownas-frontend.vercel.app",
"repository": {
"type": "git",
"url": "git+https://github.com/bolajahmad/proownas"
},
"bugs": {
"url": "https://github.com/bolajahmad/proownas/issues"
},
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=16 <=18",
"pnpm": "8"
},
"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": "^14.0.1",
"next": "^13.4.19",
"typescript": "^5.2.2"
}
}