This repository was archived by the owner on Nov 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.12 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.12 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
{
"name": "@owlprotocol/web3-redux-monorepo",
"version": "1.1.0",
"private": true,
"description": "Owl Protocol Web3 Redux Monorepo",
"keywords": [
"web3",
"redux",
"pnpm",
"workspace"
],
"license": "MIT",
"author": "Leo Vigna",
"scripts": {
"start": "pnpm --stream -r run start",
"build": "pnpm --stream -r --filter '!@owlprotocol/web3-redux-docs' run build",
"build:web3-redux": "pnpm --filter '@owlprotocol/web3-redux' run build",
"build:web3-redux-components": "pnpm --filter '@owlprotocol/web3-redux-components' run build",
"build:web3-redux-components-storybook": "pnpm --stream -r run build-storybook",
"build:web3-redux-docs": "pnpm --filter '@owlprotocol/web3-redux-docs' run build",
"clean": "pnpm --stream -r run clean",
"clean:node_modules": "rimraf node_modules packages/*/node_modules",
"test": "pnpm --stream -r run test",
"test:web3-redux": "pnpm --filter '@owlprotocol/web3-redux' run test",
"test:web3-redux-components": "pnpm --filter '@owlprotocol/web3-redux-components' run test",
"husky:install": "husky install",
"publish": "pnpm publish -r",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"lint:staged": "lint-staged"
},
"dependencies": {
"@changesets/cli": "^2.21.1",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"@owlprotocol/eslint-config": "^1.0.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.5.7",
"husky": "^7.0.4",
"lint-staged": "^11.1.2",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.5.4"
}
}