-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.3 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.3 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
{
"name": "paynote-workspace",
"version": "1.0.0",
"private": true,
"description": "PayNote - Smart contract registry and frontend workspace",
"scripts": {
"frontend:dev": "cd frontend/paynote && npm run dev",
"frontend:build": "cd frontend/paynote && npm run build",
"frontend:start": "cd frontend/paynote && npm start",
"frontend:lint": "cd frontend/paynote && npm run lint",
"frontend:typecheck": "cd frontend/paynote && npm run typecheck",
"frontend:install": "cd frontend/paynote && npm install",
"database:generate": "cd frontend/paynote && npm run db:generate",
"database:push": "cd frontend/paynote && npm run db:push",
"database:seed": "cd frontend/paynote && npm run db:seed",
"database:studio": "cd frontend/paynote && npm run db:studio",
"contracts:compile": "cd contracts && npx hardhat compile",
"contracts:test": "cd contracts && npx hardhat test",
"contracts:install": "cd contracts && npm install",
"install:all": "npm run contracts:install && npm run frontend:install"
},
"repository": {
"type": "git",
"url": "https://github.com/ck0x/PayNote.git"
},
"keywords": [
"web3",
"blockchain",
"ethereum",
"hardhat",
"nextjs",
"typescript"
],
"author": "",
"license": "MIT"
}