-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.96 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
{
"name": "glitter-finance",
"version": "1.0.0",
"author": "Glitter Finance",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"build:core": "yarn workspace @glitter-finance/sdk-core build",
"release:core": "yarn workspace @glitter-finance/sdk-core build && npx lerna publish",
"types:core": "typechain --target ethers-v5 --out-dir ./packages/sdk-core/src/typechain ./packages/sdk-core/src/**/*.abi.json",
"build:web": "yarn workspace @glitter-finance/sdk-web build",
"release:web": "yarn workspace @glitter-finance/sdk-core build && yarn workspace @glitter-finance/sdk-web build && npx lerna publish",
"build:server": "npm run build -w ./packages/sdk-server",
"release:server": "yarn workspace @glitter-finance/sdk-core build && yarn workspace @glitter-finance/sdk-server build && npx lerna publish",
"release:all": "yarn workspace @glitter-finance/sdk-core build && yarn workspace @glitter-finance/sdk-web build && yarn workspace @glitter-finance/sdk-server build && npx lerna publish",
"test:core": "yarn workspace @glitter-finance/sdk-core build && yarn workspace @glitter-finance/sdk-integration-tests test",
"example:server-solana": "npm run example:solana -w ./packages/examples",
"docs": "npx typedoc --entryPointStrategy packages . --out docs"
},
"devDependencies": {
"@typechain/ethers-v5": "^11.0.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.56.0",
"assert": "^2.0.0",
"dotenv": "^16.3.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.4.3",
"husky": "^8.0.3",
"jest": "^29.4.3",
"lerna": "^7.1.1",
"prettier": "^2.8.5",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typechain": "^8.2.0",
"typedoc": "^0.23.28",
"typescript": "^5.0.2"
}
}