-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
62 lines (62 loc) · 2.21 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "ts-program-template",
"version": "0.1.0",
"description": "Sample TS App",
"main": "client/main.ts",
"author": "",
"keywords": [],
"workspace": "client/",
"repository": {
"type": "git",
"url": "https: //github.com/hashblock/solana-cli-program-template"
},
"homepage": "https: //github.com/hashblock/solana-cli-program-template",
"scripts": {
"build:client": "rm -rf ./.dist/client && tsc ",
"test:client": "npm run build:client && mocha --timeout 999999 -r ts-node/register client/tests/**/*",
"do:MintUser1": "npm run build:client && ts-node client/main mint -b user1 -k newKey -v 'A new value'",
"do:TransferUser1To2": "npm run build:client && ts-node client/main transfer -b user1 -k newKey -t user2",
"do:BurnUser2": "npm run build:client && ts-node client/main burn -b user2 -k newKey",
"do:DataUser1": "npm run build:client && ts-node client/fetch data -b user1",
"do:DataUser2": "npm run build:client && ts-node client/fetch data -b user2",
"lint": "eslint --ext .ts client/* && prettier --check \"client/**/*.ts\"",
"lint:fix": "eslint --ext .ts client/* --fix",
"pretty": "prettier --write '{,client/**/}*.ts'"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/chai": "^4.3.0",
"@types/eslint": "^7.28.2",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/mkdirp": "^1.0.2",
"@types/mocha": "^9.0.0",
"@types/prettier": "^2.4.1",
"@types/yargs": "^17.0.7",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"chai": "^4.3.4",
"eslint": "^8.2.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"mocha": "^9.1.3",
"prettier": "^2.4.1",
"start-server-and-test": "^1.14.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@solana/web3.js": "^1.31.0",
"base-58": "^0.0.1",
"borsh": "^0.7.0",
"env": "^0.0.2",
"fs": "^0.0.1-security",
"mkdirp": "^1.0.4",
"npm-check-updates": "^12.0.3",
"sync-request": "^6.1.0",
"ts-results": "^3.3.0",
"update": "^0.4.2",
"yargs": "^17.3.0"
}
}