forked from MoralisWeb3/Moralis-JS-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.09 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
{
"name": "moralis-monorepo",
"version": "0.0.0-monorepo",
"description": "Moralis SDK",
"main": "index.js",
"author": "Moralis",
"license": "MIT",
"private": true,
"devDependencies": {
"@changesets/changelog-github": "^0.4.4",
"@changesets/cli": "^2.22.0",
"@moralisweb3/eslint-config": "^1.0.0",
"@moralisweb3/typedoc-readme-theme": "^1.0.0",
"@types/estree": "^1.0.0",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"archiver": "^5.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.23.0",
"eslint-plugin-import": "^2.26.0",
"fs-extra": "^10.1.0",
"glob-fs": "^0.1.7",
"jest": "28",
"msw": "^0.43.0",
"nx": "^14.5.10",
"openapi-types": "^12.0.0",
"prettier": "^2.7.1",
"rdme": "^7.5.0",
"ts-jest": "^28.0.3",
"typedoc": "^0.23.10",
"typedoc-plugin-markdown": "^3.13.4",
"typescript": "^4.5.5",
"yarn": "^1.22.17"
},
"scripts": {
"build": "yarn nx run-many --target=build --all",
"build:demo-docs": "node ./scripts/buildDemoDocs.js",
"build:docs": "rm -rf docs && yarn typedoc && yarn build:demo-docs",
"gen:api-types": "yarn nx run-many --target=gen:api-types --all",
"build:clean": "nx reset && yarn clean && yarn build",
"dev": "yarn nx run-many --target=dev --all",
"lint": "yarn nx run-many --target=lint --all",
"clean": "yarn nx run-many --target=clean --all",
"test": "yarn nx run-many --target=test --all",
"test:watch": "yarn nx run-many --target=test:watch --all",
"test:coverage": "yarn nx run-many test:coverage --parallel",
"format": "yarn prettier . \"**/*.+(js|ts|json)\" --write",
"format:check": "yarn prettier . \"**/*.+(js|ts|json)\" --check",
"release": "yarn build && changeset publish"
},
"workspaces": {
"packages": [
"packages/*",
"packages/client/*",
"demos/*",
"demos/firebase-proxy/*",
"demos/firebase-auth-ext/*",
"demos/firebase-streams-ext/*"
]
},
"resolutions": {
"debug": "^3.1.0",
"micromatch": "^4.0.2"
}
}