-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.84 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.84 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
{
"license": "SEE LICENSE IN LICENSE.MD",
"dependencies": {
"@project-serum/anchor": "0.26.0",
"@solana/spl-token": "0.3.7",
"@solana/web3.js": "1.73.0",
"@uxd-protocol/uxd-client": "8.2.0-rc2"
},
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^18.11.12",
"@types/node-fetch": "^2.6.2",
"chai": "^4.3.6",
"husky": "^7.0.4",
"mocha": "^9.2.1",
"mochawesome": "^7.0.1",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.2",
"ts-mocha": "^9.0.2",
"typescript": "^4.5.5"
},
"scripts": {
"source-lint": "cargo clippy --all-targets",
"source-format": "cargo fmt",
"source-format-check": "cargo fmt --check",
"tests-lint": "tsc --noEmit --pretty",
"tests-format": "prettier --write 'tests'",
"tests-format-check": "prettier --check 'tests'",
"target-idl-format": "prettier --write 'target/idl'",
"target-deploy-format": "prettier --write 'target/deploy'",
"target-types-format": "prettier --write 'target/types'",
"target-format": "npm run target-idl-format && npm run target-deploy-format && npm run target-types-format",
"target-idl-format-check": "prettier --check 'target/idl'",
"target-deploy-format-check": "prettier --check 'target/deploy'",
"target-types-format-check": "prettier --check 'target/types'",
"target-format-check": "npm run target-idl-format-check && npm run target-deploy-format-check && npm run target-types-format-check",
"lint": "npm run source-lint && npm run tests-lint",
"format": "npm run source-format && npm run tests-format && npm run target-format",
"format-check": "npm run source-format-check && npm run tests-format-check && npm run target-format-check",
"validate": "npm run lint && npm run format-check",
"prepare": "husky install"
}
}