forked from vacekj/changeth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 781 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 781 Bytes
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": "@change/monorepo",
"version": "0.0.1",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"start": "turbo run start",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"frontend:dev": "pnpm --filter frontend dev",
"frontend:start": "pnpm --filter frontend start",
"prepare": "husky install"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"next": "^13.0.0",
"ethers": "^5.0.0"
}
}
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"turbo": "^1.8.3",
"typescript": "^4.9.5"
}
}