-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.4 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.4 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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@deploydao/migrator",
"version": "0.1.0",
"description": "Migration management for Solana programs.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"keywords": [
"solana",
"blockchain"
],
"bugs": {
"url": "https://github.com/deploydao/migrator/issues",
"email": "team@deploydao.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deploydao/migrator.git"
},
"author": "DeployDAO <team@deploydao.com>",
"homepage": "https://deploydao.com",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@project-serum/anchor": "^0.17.1-beta.1",
"@rushstack/eslint-patch": "^1.0.7",
"@saberhq/anchor-contrib": "^1.3.14",
"@saberhq/chai-solana": "^1.3.14",
"@saberhq/eslint-config": "^1.3.14",
"@saberhq/solana-contrib": "^1.3.14",
"@saberhq/token-utils": "^1.3.14",
"@solana/spl-token": "^0.1.8",
"@solana/spl-token-registry": "^0.2.272",
"@solana/web3.js": "^1.29.2",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.2.22",
"@types/eslint": "^7",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.3",
"bn.js": "^5.2.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.24.2",
"husky": "^7.0.2",
"lint-staged": "^11.2.0",
"mocha": "8",
"prettier": "^2.4.1",
"ts-mocha": "^8.0.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,json,html,css,md}": "prettier --write",
"*.nix": "nixfmt"
},
"scripts": {
"build": "rm -fr dist/ && tsc -P tsconfig.build.json && tsc -P tsconfig.esm.json",
"lint": "eslint . --cache",
"test": "anchor test --skip-build tests/*.ts",
"prepare": "husky install",
"idl:generate": "./scripts/idl.sh && ./scripts/generate-idl-types.sh",
"idl:generate:nolint": "./scripts/idl.sh && RUN_ESLINT=none ./scripts/generate-idl-types.sh"
},
"dependencies": {
"tiny-invariant": "^1.1.0",
"tslib": "^2.3.1"
},
"peerDependencies": {
"@project-serum/anchor": "^0.17.0",
"@saberhq/anchor-contrib": "^1.3.14",
"@saberhq/solana-contrib": "^1.3.14",
"@saberhq/token-utils": "^1.3.14",
"@solana/web3.js": "^1.29.2",
"bn.js": "^5.2.0"
},
"packageManager": "yarn@3.0.2",
"files": [
"dist/",
"src/"
]
}