-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
35 lines (35 loc) · 1.24 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
{
"name": "draffle-starter-dapp",
"private": true,
"scripts": {
"add-prize": "ts-node --project cli/tsconfig.json cli/main.ts add-prize",
"buy-tickets": "ts-node --project cli/tsconfig.json cli/main.ts buy-tickets",
"claim-prize": "ts-node --project cli/tsconfig.json cli/main.ts claim-prize",
"collect-proceeds": "ts-node --project cli/tsconfig.json cli/main.ts collect-proceeds",
"create-raffle": "ts-node --project cli/tsconfig.json cli/main.ts create-raffle",
"reveal-winners": "ts-node --project cli/tsconfig.json cli/main.ts reveal-winners",
"show-idl": "ts-node --project cli/tsconfig.json cli/main.ts show-idl",
"show-raffle": "ts-node --project cli/tsconfig.json cli/main.ts show-raffle",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@project-serum/anchor": "^0.18.2",
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.30.2",
"next": "12.0.4",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/node": "16.11.9",
"@types/react": "17.0.36",
"commander": "^8.3.0",
"eslint": "7",
"eslint-config-next": "12.0.4",
"ts-node": "^10.4.0",
"typescript": "4.5.2"
}
}