-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 877 Bytes
/
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
{
"name": "alaatoken",
"author": "Alaa Zorkane",
"private": true,
"workspaces": [
"packages/*"
],
"dependencies": {
"@project-serum/anchor": "^0.20.1",
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.31.0",
"eslint": "^8.7.0"
},
"scripts": {
"test": "yarn vitest",
"anchor:deploy": "anchor build && anchor deploy && yarn generate:idl",
"anchor:test": "anchor test --skip-deploy --skip-build",
"cli": "ts-node ./cli/index.ts",
"====================== SCRIPTS ======================": "",
"idl": "yarn idl:parse && yarn idl:generate",
"idl:generate": "./scripts/generate.sh",
"idl:parse": "./scripts/parse.sh"
},
"devDependencies": {
"@types/node": "^17.0.8",
"ts-node": "^10.4.0",
"ts-toolbelt": "^9.6.0",
"typescript": "^4.3.5",
"vite": "^2.7.10",
"vitest": "^0.0.140"
}
}