forked from MoralisWeb3/Moralis-JS-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.35 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
{
"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.7",
"@changesets/cli": "^2.25.2",
"@moralisweb3/eslint-config": "^1.0.1",
"@moralisweb3/typedoc-readme-theme": "^1.0.0",
"@types/archiver": "^5.3.1",
"@types/estree": "^1.0.0",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"archiver": "^5.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.32.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"jest": "29.3.1",
"nx": "^14.5.10",
"openapi-types": "^12.0.0",
"prettier": "^2.8.0",
"rdme": "^7.5.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.21",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.4"
},
"scripts": {
"build": "yarn nx run-many --target=build --all",
"build:docs": "ts-node ./scripts/buildDocs",
"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 --target=test:coverage --all",
"format": "yarn prettier . \"**/*.+(js|ts|json)\" --write",
"format:check": "yarn prettier . \"**/*.+(js|ts|json)\" --check",
"release": "yarn build && changeset publish",
"generate": "nx run @moralisweb3/codegen:generate"
},
"workspaces": {
"packages": [
"packages/*",
"packages/common/*",
"packages/client/*",
"packages/common/*",
"packages/create-moralis-dapp/*",
"demos/*",
"demos/firebase-proxy/*",
"demos/firebase-auth-ext/*",
"demos/firebase-streams-ext/*",
"demos/firebase-streams-monitor/*",
"demos/firebase-nextjs/*"
]
},
"resolutions": {
"debug": "^3.1.0",
"micromatch": "^4.0.2"
},
"packageManager": "yarn@3.3.0"
}