-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
159 lines (159 loc) · 5.2 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "ceramic-anchor-service",
"version": "0.0.143",
"license": "(Apache-2.0 OR MIT)",
"keywords": [
"ceramic",
"anchor",
"eth",
"3box"
],
"main": "./build/app.js",
"types": "./build/app.d.ts",
"directories": {
"build": "./build"
},
"exports": {
".": "./build/app.js"
},
"type": "module",
"sideEffects": false,
"scripts": {
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathIgnorePatterns=/auth/ --forceExit --coverage --runInBand",
"coverage": "./node_modules/.bin/nyc npm run test",
"build": "./node_modules/.bin/genversion --es6 src/version.ts && ./node_modules/.bin/tsc --project tsconfig.json",
"format": "./node_modules/.bin/prettier --write 'src/**/*{.ts,.tsx,.js}'",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean",
"postinstall": "./node_modules/.bin/node-config-ts",
"lint": "./node_modules/.bin/eslint --fix ./src --ext .js,.jsx,.ts,.tsx",
"clean": "rm -rf ./build && rm -rf coverage && rm -rf .nyc_output",
"start": "node --loader tsm ./build/main.js",
"startDev": "NODE_ENV=dev APP_MODE=bundled node --loader tsm ./build/main.js",
"watch": "./node_modules/.bin/nodemon -e ts --watch src --exec \"npm run build && npm run start\"",
"buildContract": "cd contracts && make build",
"testContract": "cd contracts && make t",
"runGanache": "cd contracts && make g",
"runAnvil": "cd contracts && make a",
"deployContract": "cd contracts && make create",
"invokeContract": "cd contracts && make invoke",
"installContractDeps": "cd contracts && make installDeps",
"release": "./node_modules/.bin/release-it --verbose --disable-metrics",
"migrateTestDb": "NODE_ENV=test ./node_modules/knex/bin/cli.js migrate:latest"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.577.0",
"@aws-sdk/client-sqs": "^3.577.0",
"@ceramicnetwork/anchor-utils": "^1.11.0-rc.0",
"@ceramicnetwork/codecs": "^1.3.0-rc.0",
"@ceramicnetwork/common": "^2.28.0-rc.0",
"@ceramicnetwork/core": "^2.35.0-rc.0",
"@ceramicnetwork/logger": "^2.5.0",
"@ceramicnetwork/observability": "^1.5.6",
"@ceramicnetwork/streamid": "^2.15.0-rc.0",
"@ceramicnetwork/wasm-bloom-filter": "^0.1.0",
"@overnightjs/core": "^1.7.6",
"@stablelib/sha256": "^1.0.1",
"@types/lodash.camelcase": "^4.3.7",
"@types/lodash.snakecase": "^4.1.7",
"await-semaphore": "^0.1.3",
"aws-sdk": "^2.1049.0",
"cartonne": "^2.1.1",
"codeco": "^1.1.4",
"conditional-type-checks": "^1.0.6",
"cors": "^2.8.5",
"dag-jose": "^4.0.0",
"dotenv": "^16.0.3",
"ethers": "~5.7.2",
"express": "^4.18.1",
"http-status-codes": "^2.2.0",
"ipfs-http-client": "^60.0.0",
"knex": "^2.2.0",
"least-recent": "^1.0.2",
"levelup": "^5.1.1",
"lodash.camelcase": "^4.3.0",
"lodash.clonedeep": "^4.5.0",
"lodash.snakecase": "^4.1.1",
"morgan": "^1.10.0",
"multiformats": "^11.0.1",
"os-utils": "^0.0.14",
"pg": "^8.8.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.2",
"s3leveldown": "^2.2.2",
"tsm": "^2.2.2",
"typed-inject": "^4.0.0",
"uint8arrays": "^4.0.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@babel/register": "^7.21.0",
"@ceramicnetwork/cli": "^2.26.0",
"@ceramicnetwork/stream-tile": "^2.19.0",
"@databases/pg-test": "^3.1.2",
"@stablelib/random": "^1.0.1",
"@types/cors": "^2.8.12",
"@types/levelup": "^5.1.2",
"@types/lodash.camelcase": "^4.3.7",
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.snakecase": "^4.1.7",
"@types/luxon": "^3.2.0",
"@types/morgan": "^1.9.3",
"@types/node": "^16.18.13",
"@types/os-utils": "0.0.1",
"@types/pg": "^8.6.6",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"babel-jest": "^29.4.3",
"dids": "^4.0.0",
"eslint": "^8.35.0",
"eslint-config-3box": "^1.0.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"ganache": "^7.7.5",
"genversion": "^3.1.1",
"get-port": "^6.0.0",
"go-ipfs": "^0.20.0",
"husky": "^8.0.2",
"ipfsd-ctl": "^13.0.0",
"jest": "^29.4.3",
"key-did-provider-ed25519": "^3.0.0",
"key-did-resolver": "^3.0.0",
"luxon": "^3.2.1",
"node-config-ts": "^3.1.0",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"release-it": "^15.5.0",
"supertest": "^6.3.3",
"tmp-promise": "^3.0.3",
"ts-essentials": "^9.3.2",
"typescript": "^5.4.5"
},
"prettier": "eslint-config-3box/prettier.config",
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
}
}
}