-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 990 Bytes
/
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
{
"name": "@soda/soda-asset",
"version": "0.0.1",
"description": "",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"prettier": "prettier --check src/",
"prettier:fix": "prettier --write src/",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "yarn lint --fix",
"verify:fix": "yarn prettier:fix && yarn lint:fix",
"clean": "rimraf dist",
"build": "father-build",
"build:watch": "father-build --watch"
},
"author": "EuclidTwin",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.17.9",
"@soda/soda-asset": "workspace:^0.0.1",
"@soda/soda-util": "workspace:^0.0.1",
"web3-utils": "^1.7.3"
},
"devDependencies": {
"@types/node": "^17.0.35",
"eslint": "^7.7.0",
"father-build": "^1.21.2",
"husky": "^4.3.8",
"jest": "26.6.3",
"lint-staged": "^10.0.2",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.6.2"
}
}