-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.92 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.92 KB
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
45
46
47
48
49
50
{
"name": "polypay-app",
"version": "0.0.1",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"chain": "yarn hardhat:chain",
"compile": "yarn hardhat:compile",
"deploy": "yarn workspace @se-2/hardhat deploy",
"fork": "yarn hardhat:fork",
"generate": "yarn account:generate",
"postinstall": "husky install",
"ipfs": "yarn workspace @polypay/frontend ipfs",
"lint": "yarn next:lint && yarn hardhat:lint",
"next:build": "yarn workspace @polypay/frontend build",
"next:check-types": "yarn workspace @polypay/frontend check-types",
"next:format": "yarn workspace @se-2/nextjs format",
"next:lint": "yarn workspace @se-2/nextjs lint",
"next:serve": "yarn workspace @se-2/nextjs serve",
"precommit": "lint-staged",
"start:frontend": "yarn workspace @polypay/frontend dev",
"start:backend": "yarn workspace @polypay/backend start:dev",
"typecheck:shared": "yarn workspace @polypay/shared typecheck",
"test": "yarn hardhat:test",
"vercel": "yarn workspace @se-2/nextjs vercel",
"vercel:login": "yarn workspace @se-2/nextjs vercel:login",
"vercel:yolo": "yarn workspace @se-2/nextjs vercel:yolo",
"verify": "yarn hardhat:verify",
"build": "yarn build:shared && yarn build:backend && yarn build:frontend",
"build:shared": "yarn workspace @polypay/shared build",
"build:backend": "yarn workspace @polypay/backend build",
"build:frontend": "yarn workspace @polypay/frontend build",
"format": "yarn format:shared && yarn format:backend && yarn format:frontend",
"format:shared": "yarn workspace @polypay/shared format",
"format:backend": "yarn workspace @polypay/backend format",
"format:frontend": "yarn workspace @polypay/frontend format"
},
"devDependencies": {
"husky": "~9.1.6",
"lint-staged": "~13.2.2"
},
"packageManager": "yarn@3.2.3",
"engines": {
"node": ">=20.18.3"
}
}