-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.26 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@port.finance/sundial",
"version": "0.0.27",
"description": "Sundial",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"license": "AGPL-3.0",
"repository": "[email protected]:port-finance/sundial.git",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"idl:generate": "./scripts/parse-idls.sh && ./scripts/generate-idl-types.sh",
"build": "rm -fr dist/ && tsc -P tsconfig.build.json && tsc -P tsconfig.esm.json",
"test:e2e": "ANCHOR_WALLET=~/.config/solana/id.json anchor test --skip-build 'tests/*.ts'",
"lint": "eslint tests --cache && eslint src --cache && prettier --write '{tests,src,migrations}/**/*.ts'",
"lint:ci": "eslint tests --max-warnings=0 && eslint src --max-warnings=0 && prettier -c '{tests,src,migrations}/**/*.ts'"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
},
"prettier": {
"arrowParens": "avoid",
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@project-serum/anchor": "^0.22.1",
"@project-serum/serum": "^0.13.61",
"@saberhq/anchor-contrib": "^1.12.56",
"@solana/web3.js": "^1.31.0",
"@types/lodash.mapvalues": "^4.6.6",
"jsbi": "^4.1.0",
"lodash.mapvalues": "^4.6.0",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@port.finance/port-sdk": "^0.2.66",
"@port.finance/mock-oracles": "^0.0.5",
"@project-serum/common": "^0.0.1-beta.3",
"@saberhq/chai-solana": "^1.12.56",
"big.js": "^6.1.1",
"@types/big.js": "^6.1.2",
"@pythnetwork/client": "^2.5.3",
"@saberhq/solana-contrib": "^1.12.56",
"@saberhq/token-utils": "^1.12.56",
"@solana/spl-token": "^0.1.8",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"chai": "^4.3.4",
"eslint": "^8.2.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"mocha": "^9.0.3",
"prettier": "^2.5.1",
"ts-mocha": "^9.0.2",
"typescript": "^4.3.5"
},
"peerDependencies": {
"@solana/spl-token-registry": "*",
"@port.finance/port-sdk": "^0.2.66"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"src/"
]
}