-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.82 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
{
"name": "@alien-worlds/aw-history-dao",
"version": "0.0.1",
"description": "",
"packageManager": "yarn@3.2.3",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"api": "node build/api/index.js",
"broadcast": "node build/broadcast/index.js",
"boot": "node build/bootstrap/index.js",
"reader": "node build/reader/index.js",
"filter": "node build/filter/index.js",
"processor": "node build/processor/index.js",
"test:unit": "jest --config=jest.config.unit.js",
"clean": "rm -rf ./build",
"build": "yarn clean && tsc -b",
"prepublish": "yarn clean && tsc --project tsconfig.build.json",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"format-check": "prettier --check \"src/\"",
"format": "prettier --write \"src/\""
},
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^27.0.3",
"@types/node": "^18.7.14",
"@types/node-fetch": "2.x",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.4.5",
"prettier": "^2.7.1",
"ts-jest": "^27.1.3",
"typescript": "^4.8.2"
},
"dependencies": {
"@alien-worlds/aw-contract-dao-worlds": "^0.0.39",
"@alien-worlds/aw-contract-escrw-worlds": "^0.0.18",
"@alien-worlds/aw-contract-index-worlds": "^0.0.33",
"@alien-worlds/aw-contract-msig-worlds": "^0.0.9",
"@alien-worlds/aw-contract-prop-worlds": "^0.0.18",
"@alien-worlds/aw-contract-ref-worlds": "^0.0.15",
"@alien-worlds/aw-contract-stkvt-worlds": "^0.0.27",
"@alien-worlds/aw-contract-token-worlds": "^0.0.36",
"@alien-worlds/aw-history-starter-kit": "^0.0.10"
}
}