forked from StrataFoundation/strata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 3 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
{
"name": "@strata-foundation/strata",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"description": "Wum.bo Token Staking tests",
"license": "MIT",
"author": "Wum.bo Inc.",
"devDependencies": {
"@parcel/packager-ts": "^2.0.0",
"@parcel/transformer-typescript-types": "^2.0.0",
"@project-serum/anchor": "^0.24.2",
"@types/bn.js": "^5.1.0",
"@types/bs58": "^4.0.1",
"@types/chai": "^4.2.21",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^9.0.0",
"camelcase": "^6.2.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"concurrently": "^6.2.1",
"debug": "^4.3.2",
"mocha": "^9.1.4",
"prettier": "2.3.1",
"ts-mocha": "^8.0.0",
"ts-node": "^10.5.0",
"typescript": "^4.4.3",
"vite": "^3.0.4"
},
"scripts": {
"versionup": "lerna version --conventional-commits --no-git-tag-version",
"versionup:patch": "lerna version patch --conventional-commits --no-git-tag-version",
"versionup:minor": "lerna version minor --conventional-commits --no-git-tag-version",
"versionup:major": "lerna version major --conventional-commits --no-git-tag-version",
"postversionup": "npm run commit-version",
"postversionup:patch": "npm run commit-version",
"postversionup:minor": "npm run commit-version",
"postversionup:major": "npm run commit-version",
"commit-version": "git add . && git commit -m \"chore(release): publish `node -p 'require(\"./lerna.json\").version'`\"",
"release": "lerna publish from-package --no-verify-access",
"release:canary": "lerna publish --canary --preid next --dist-tag next --force-publish='*' --no-push --no-git-tag-version --no-verify-access --yes",
"build-sdks": "lerna run --parallel prebuild && tsc --build",
"build-programs": "anchor build && npx lerna run build --scope @strata-foundation/spl-utils --scope @strata-foundation/spl-token-bonding --scope @strata-foundation/spl-token-collective --scope @strata-foundation/fungible-entangler",
"bootstrap": "lerna run bootstrap --scope @strata-foundation/cli",
"test": "ts-mocha -p ./tsconfig.test.json -t 1000000 \"tests/**/*.ts\"",
"prepare": "husky install",
"clean": "lerna run clean",
"build": "lerna run --parallel prebuild && tsc --build",
"idl": "lerna run watch --scope @strata-foundation/cli",
"watch": "lerna run --parallel prebuild && tsc --build --watch",
"fmt": "prettier --write '{*,**/*}.{ts,tsx,js,jsx,json}'",
"lint": "prettier --check '{*,**/*}.{ts,tsx,js,jsx,json}' && eslint",
"lint:fix": "yarn fmt && eslint --fix",
"nuke": "npx shx rm -rf {.,packages/*}/{node_modules,lib,yarn.lock,dist,lib}",
"reinstall": "yarn nuke && lerna bootstrap --ignore-scripts"
},
"dependencies": {
"@solana/spl-name-service": "^0.1.3",
"@solana/buffer-layout": "^4.0.0",
"@solana/spl-token": "0.1.8",
"@solana/web3.js": "^1.43.4",
"bn.js": "^5.2.0",
"borsh": "^0.7.0",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"quicktype-core": "^6.0.70"
}
}