-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
58 lines (58 loc) · 1.64 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
{
"name": "@monax/blackstone",
"version": "0.0.0",
"description": "Contract Suite for the Agreements Network",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"mocha": {
"bail": false,
"exit": true,
"timeout": 120000,
"require": "ts-node/register"
},
"files": [
"dist"
],
"scripts": {
"build:solidity": "cd src && ts-node build.ts",
"build:ts": "tsc --build",
"build": "yarn run build:solidity && yarn run build:ts",
"test": "mocha --file 'src/tests/before.ts' 'src/tests/*.test.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"lint:fix:generated": "eslint --fix --quiet 'src/**/*.abi.ts'",
"migrate:completables": "ts-node src/migrations/migrate-completables.ts"
},
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@hyperledger/burrow": "0.34.0",
"dotenv": "^9.0.2",
"log4js": "^6.3.0",
"pg": "^8.6.0",
"pg-listen": "^1.7.0",
"sha3": "^2.1.4"
},
"devDependencies": {
"@types/chai": "^4.2.8",
"@types/chai-as-promised": "^7.1.2",
"@types/dotenv": "^8.2.0",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.2",
"@types/pg": "^7.14.11",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.25.0",
"eslint-plugin-prettier": "^3.3.1",
"get-func-name": "^2.0.0",
"mocha": "^8.4.0",
"nanoid": "^2.1.10",
"prettier": "^2.2.1",
"prettier-plugin-organize-imports": "^1.1.1",
"random-id": "^1.0.3",
"solc": "0.5.12",
"solts": "0.0.6",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}