This repository has been archived by the owner on Sep 7, 2023. It is now read-only.
forked from dialectlabs/react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.63 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
{
"name": "@dialectlabs/workspaces",
"version": "0.1.3",
"description": "",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/dialectlabs/react"
},
"scripts": {
"bootstrap": "yarn build:all",
"build:all": "yarn run build:react-sdk && yarn run build:react-ui && yarn run build:react-solana && yarn run build:react-aptos",
"build:react-ui": "yarn workspace @dialectlabs/react-ui run build",
"build:react-aptos": "yarn workspace @dialectlabs/react-sdk-blockchain-aptos run build",
"build:react-solana": "yarn workspace @dialectlabs/react-sdk-blockchain-solana run build",
"build:react-sdk": "yarn workspace @dialectlabs/react-sdk run build",
"dev:react-ui": "yarn workspace @dialectlabs/react-ui run dev",
"dev:react-sdk": "yarn workspace @dialectlabs/react-sdk run dev",
"lint": "eslint --ext .js --ext .ts --ext .tsx .",
"lint:fix": "yarn lint --fix"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"concurrently": "^7.1.0",
"eslint": "7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.4.0",
"typescript": "^4.6.3"
},
"keywords": [],
"author": "@dialectlabs",
"license": "Apache-2.0",
"browser": {
"fs": false,
"path": false,
"os": false
},
"workspaces": [
"examples/*",
"packages/*",
"starters/*"
],
"engines": {
"node": ">=16"
},
"resolutions": {
"graceful-fs": "4.2.10"
},
"engineStrict": true
}