-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.83 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
{
"name": "pianity-smartcontracts",
"version": "1.0.0",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"license": "MIT",
"author": "Eyal Chojnowski <[email protected]>",
"engines": {
"node": ">=16.13.0"
},
"scripts": {
"build:contract": "ts-node scripts/build.ts",
"build:declarations": "tsc -p tsconfig.contract.json && tsc-alias -p tsconfig.contract.json",
"typecheck": "tsc --noEmit",
"lint": "prettier --check src/ ; eslint src/",
"lint:fix": "prettier --write src/ ; eslint --fix src/",
"test": "ava",
"postinstall": "patch-package"
},
"dependencies": {
"arweave": "^1.10.23",
"ava": "^4.0.1",
"bignumber.js": "^9.0.2",
"esbuild": "^0.14.13",
"fp-ts": "^2.11.8",
"io-ts": "^2.2.16",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"redstone-smartweave": "^0.4.53",
"replace-in-file": "^6.3.2",
"smartweave": "0.4.46",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"devDependencies": {
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-tsdoc": "^0.2.14",
"prettier": "^2.5.0",
"tsc-alias": "^1.6.4",
"tsconfig-paths": "^3.14.1"
},
"ava": {
"files": [
"test/**/*.test.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}