This repository was archived by the owner on Jan 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.45 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.45 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
{
"name": "thirdweb-ui",
"version": "1.0.0",
"main": "index.js",
"author": "Jonas Daniels <jonas.daniels@outlook.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/nftlabs/ui"
},
"private": true,
"homepage": "https://thirdweb.com/",
"workspaces": [
"packages/*",
"examples/*"
],
"preconstruct": {
"packages": [
"packages/*"
]
},
"scripts": {
"postinstall": "preconstruct dev",
"fix": "preconstruct fix",
"build": "preconstruct build",
"dev": "preconstruct dev",
"lint": "eslint packages/**/src/ --ext .ts,.tsx --config .eslintrc",
"fix:pkgs": "manypkg fix"
},
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@manypkg/cli": "^0.19.1",
"@parcel/babel-preset-env": "^2.0.1",
"@preconstruct/cli": "^2.1.5",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-inclusive-language": "^2.1.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-tsdoc": "^0.2.14",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"resolutions": {
"glob-parent": "^6.0.2",
"ansi-regex": "^5.0.1",
"json-schema": "^0.4.0"
}
}