-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.02 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 3.02 KB
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
75
76
77
78
79
80
81
{
"name": "rarimo-js-sdk-monorepo-root",
"private": true,
"description": "TypeScript-based source development script for the Rarimo protocol",
"keywords": [
"sdk",
"rarimo"
],
"homepage": "https://github.com/rarimo/js-sdk",
"bugs": {
"url": "https://github.com/rarimo/js-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rarimo/js-sdk.git"
},
"license": "MIT",
"author": "Rarimo",
"workspaces": [
"packages/*"
],
"gitHooks": {
"pre-commit": "yarn lint"
},
"scripts": {
"build": "yarn workspaces foreach -pv --topological-dev run build",
"build:shared": "yarn workspace @rarimo/shared build",
"build:bridge": "yarn workspace @rarimo/bridge build",
"build:swap": "yarn workspace @rarimo/swap build",
"build:nft-checkout": "yarn workspace @rarimo/nft-checkout build",
"build:react-nft-checkout": "yarn workspace @rarimo/react-nft-checkout build",
"build:react-provider": "yarn workspace @rarimo/react-provider build",
"build:provider": "yarn workspace @rarimo/provider build",
"build:providers-evm": "yarn workspace @rarimo/providers-evm build",
"build:providers-solana": "yarn workspace @rarimo/providers-solana build",
"build:providers-near": "yarn workspace @rarimo/providers-near build",
"build:identity-gen-iden3": "yarn workspace @rarimo/identity-gen-iden3 build",
"build:auth-zkp-iden3": "yarn workspace @rarimo/auth-zkp-iden3 build",
"build:zkp-gen-iden3": "yarn workspace @rarimo/zkp-gen-iden3 build",
"build:shared-zkp-iden3": "yarn workspace @rarimo/shared-zkp-iden3 build",
"build:client": "yarn workspace @rarimo/client build",
"docs": "typedoc --options typedoc.json",
"lint": "eslint . --ext .ts,.tsx --max-warnings=0 && yarn workspaces foreach -pv --no-private run typecheck",
"publish-next": "yarn build && yarn workspaces foreach --no-private exec yarn npm publish --tag next",
"publish-latest": "yarn build && yarn workspaces foreach --no-private exec yarn npm publish",
"rsc": "node scripts/release-sanity-check.js",
"apply-version": "node scripts/version.js"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "1.3.53",
"@swc/jest": "^0.2.26",
"@types/react": "^18",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.2.1",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"tsc-alias": "^1.8.2",
"typedoc": "^0.24.8",
"typescript": "5.0.4",
"yorkie": "^2.0.0"
},
"packageManager": "yarn@3.4.1",
"dependencies": {
"chalk": "4.1.2",
"react": "^18.2.0"
},
"peerDependencies": {
"@types/react": "^18"
}
}