forked from EVMcrispr/evmcrispr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.65 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
{
"name": "evmcrispr-monorepo",
"private": true,
"scripts": {
"build": "preconstruct build",
"build:terminal": "pnpm --filter \"./packages/evmcrispr-terminal\" build",
"changeset:release": "pnpm build && changeset publish",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"dev": "preconstruct dev",
"docs:evmcrispr": "pnpm --filter \"./packages/evmcrispr\" create-docs",
"lint": "eslint --cache",
"lint:fix": "pnpm lint --fix",
"lint:format": "prettier --write",
"size": "bundlewatch --config .config/bundlewatch.config.js",
"start": "pnpm dev && pnpm start:terminal",
"start:terminal": "pnpm --filter \"./packages/evmcrispr-terminal\" dev",
"test:evmcrispr": "pnpm --filter \"./packages/evmcrispr\" test",
"test:coverage": "pnpm --filter \"./packages/evmcrispr\" test:coverage",
"test:size": "pnpm build && pnpm size",
"postinstall": "pnpm install --ignore-scripts && husky install .config/husky && pnpm dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/1Hive/EVMcrispr.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/1Hive/EVMcrispr/issues"
},
"homepage": "https://github.com/1Hive/EVMcrispr#readme",
"lint-staged": {
"*.{js,ts,tsx}": [
"pnpm lint:fix"
],
"*.{json,md,mdx,yml}": [
"pnpm lint:format"
]
},
"preconstruct": {
"packages": [
"packages/evmcrispr"
]
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@changesets/cli": "^2.22.0",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@preconstruct/cli": "^2.1.5",
"@types/chai": "^4.3.1",
"@types/eslint": "^8.4.2",
"@types/mocha": "^8.2.3",
"@types/node": "^14.18.16",
"@types/prettier": "^2.6.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"bundlewatch": "^0.3.3",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"dotenv": "^16.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.6",
"hardhat": "^2.9.5",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"pnpm": "^7.0.1",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typedoc": "^0.22.15",
"typescript": "^4.6.4"
}
}