-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
89 lines (89 loc) · 2.92 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@flair-sdk/typescript",
"private": false,
"author": "flair.dev",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/flair-sdk/typescript.git"
},
"scripts": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"build": "lerna run build",
"install": "lerna bootstrap --force-local --hoist --nohoist '*flair*'",
"remove-modules": "lerna clean && rm -rf node_modules",
"clean": "lerna exec -- rimraf dist",
"refresh": "npm run clean && npm run build",
"lint": "eslint ./packages --fix",
"show-updated": "lerna updated",
"new-git-version": "lerna version --conventional-commits --create-release github --yes --message 'chore(release): publish'",
"publish": "lerna publish from-package --yes --no-verify-access",
"test": "lerna run test --parallel"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@headlessui/react": "^1.7.2",
"@heroicons/react": "^1.0.6",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.3",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.26",
"@types/react": "^18.0.10",
"@types/react-dom": "^18.0.5",
"@types/rimraf": "^3.0.2",
"@wagmi/core": "^0.8.2",
"autoprefixer": "^10.4.13",
"barrelsby": "^2.3.4",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"ethers": ">=5.5.1",
"fs-extra": "^10.0.1",
"glob": "^8.0.1",
"https-browserify": "^1.0.0",
"cjstoesm": "^2.1.2",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"path": "^0.12.7",
"postcss": "^8.4.16",
"postcss-add-root-selector": "^1.0.5",
"prettier": "^2.6.2",
"react-refresh": "^0.14.0",
"react-scripts": "5.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.70.1",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-string": "^3.0.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.7.4",
"utility-types": "^3.10.0",
"wagmi": "^0.9.2",
"webpack": "^5.70.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}