-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.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
{
"name": "borsh-js-example",
"version": "1.0.0",
"description": "Borsh js example",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hoank92/borsh-js-example.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hoank92/borsh-js-example/issues"
},
"homepage": "https://github.com/hoank92/borsh-js-example#readme",
"dependencies": {
"@types/text-encoding": "^0.0.36",
"bn.js": "^5.1.3",
"borsh": "^0.7.0",
"yaml": "^1.10.2",
"@solana/web3.js": "^1.31.0"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/bn.js": "^5.1.0",
"@types/eslint": "^7.2.4",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/prettier": "^2.1.5",
"@types/yaml": "^1.9.7",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.1.2",
"ts-node": "^10.0.0",
"typescript": "^4.0.5"
},
"engines": {
"node": "14.x"
}
}