forked from BirthdayResearch/jellyfishsdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.39 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
{
"private": false,
"name": "defichain",
"version": "0.0.0",
"description": "SDK & Ecosystem for building modern lite DeFi Applications at scale.",
"repository": "BirthdayResearch/jellyfishsdk",
"license": "MIT",
"files": [],
"workspaces": [
"./",
"./apps",
"./website",
"./packages/*"
],
"engines": {
"node": ">=v16.17.0"
},
"scripts": {
"prepare": "husky install",
"lint": "eslint . --fix",
"test": "jest --maxWorkers=100%",
"sanity": "jest --maxWorkers=100% --config=jest.sanity.js",
"ci:test": "jest --ci --coverage --forceExit --maxWorkers=4",
"all:clean": "rm -rf ./packages/**/dist && rm -rf ./apps/dist && rm -rf ./packages/**/tsconfig.build.tsbuildinfo",
"all:build": "lerna run build",
"all:version": "lerna version $1 --yes --no-push --no-git-tag-version --exact",
"all:publish": "lerna exec --no-private -- npm publish --tag latest --access public"
},
"devDependencies": {
"@types/jest": "27.5.2",
"eslint": "7.32.0",
"eslint-config-standard-jsx": "10.0.0",
"eslint-config-standard-with-typescript": "21.0.1",
"husky": "8.0.3",
"jest": "27.5.1",
"lerna": "5.1.8",
"lint-staged": "13.2.0",
"nock": "13.3.0",
"shuffle-seed": "1.1.6",
"ts-jest": "27.1.5",
"typescript": "4.2.4",
"wait-for-expect": "3.0.2"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix"
]
}
}