-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "foundry-library",
"version": "1.0.0",
"author": "Ryan Pate",
"license": "MIT",
"private": false,
"main": "dist/index",
"types": "dist/index",
"files": [
"dist/*",
"src/contracts/*"
],
"scripts": {
"start": "ts-node ./src/index.ts",
"build": "yarn build:ts",
"build:ts": "tsc -p ./tsconfig.json --outDir dist",
"clean": "rimraf dist/ ./tsconfig.tsbuildinfo",
"test:coverage": "echo 'no tests'",
"lint": "yarn lint:fix && yarn lint:check",
"lint:fix": "yarn lint:ts:fix",
"lint:check": "yarn lint:ts:check",
"lint:ts:fix": "yarn lint:ts:check --fix",
"lint:ts:check": "eslint . --max-warnings=0",
"pre-commit": "lint-staged"
},
"dependencies": {
"@chugsplash/contracts": "^0.4.1",
"@chugsplash/core": "^0.4.2",
"@chugsplash/executor": "^0.5.2",
"@eth-optimism/core-utils": "^0.12.0",
"ethers": "^5.7.2",
"ora": "^5.4.1",
"path": "^0.12.7",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/ora": "^3.2.0",
"typescript": "^4.9.4"
}
}