This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 2.82 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
90
91
92
93
94
95
96
97
98
{
"name": "@micro-stacks/react-monorepo",
"private": true,
"version": "0.0.1",
"description": "Opinionated React integrations for micro-stacks.",
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "turbo run lint",
"build": "turbo run build --parallel",
"postbuild": "shx rm -rf ./dist",
"dev:build": "turbo run build --parallel && pnpm dev:publish",
"dev:publish": "pnpm -r dev:publish",
"ci:publish": "pnpm build && pnpm publish -r --no-git-checks --access public",
"ci:version": "pnpm changeset version && pnpm install --no-frozen-lockfile && git add ."
},
"prettier": "@stacks/prettier-config",
"repository": {
"type": "git",
"url": "git+https://github.com/fungible-systems/micro-stacks-react.git"
},
"keywords": [
"stacks",
"web3",
"small-bundle"
],
"author": "Thomas Osmonson",
"contributors": [],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/fungible-systems/micro-stacks-react/issues"
},
"homepage": "https://github.com/fungible-systems/micro-stacks-react",
"devDependencies": {
"@babel/core": "7.15.8",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.14.5",
"@babel/plugin-transform-react-jsx": "7.14.9",
"@babel/plugin-transform-runtime": "7.15.8",
"@babel/plugin-transform-typescript": "7.15.8",
"@babel/preset-env": "7.15.8",
"@babel/preset-typescript": "7.15.0",
"@changesets/changelog-github": "0.4.1",
"@changesets/cli": "2.17.0",
"@fungible-systems/eslint-config": "0.0.1",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "21.0.0",
"@rollup/plugin-node-resolve": "13.0.5",
"@rollup/plugin-typescript": "8.2.5",
"@stacks/prettier-config": "0.0.9",
"@typescript-eslint/eslint-plugin": "5.1.0",
"@typescript-eslint/parser": "5.1.0",
"esbuild": "0.13.2",
"eslint": "8.0.1",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "25.2.2",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-react-hooks": "4.2.0",
"jotai": ">=1.4.7",
"prettier": "2.4.1",
"react-query": ">=3.34.2",
"rollup": "2.58.0",
"rollup-plugin-dts": "4.0.0",
"rollup-plugin-esbuild": "4.5.0",
"shx": "^0.3.3",
"turbo": "^1.0.19",
"typescript": "4.4.4"
},
"turbo": {
"baseBranch": "origin/main",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist"
]
},
"test": {
"dependsOn": [
"^build"
],
"outputs": []
},
"lint": {
"outputs": []
},
"dev": {
"cache": false
}
}
}
}