-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.37 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
{
"name": "warp-aggregate-node",
"version": "1.0.0",
"description": "An aggregate node for Warp Contracts",
"author": "just_ppe",
"license": "MIT",
"type": "module",
"scripts": {
"start:prod": "docker-compose up -d && node src/listener.mjs",
"start:prod:unsafe": "docker-compose up -d && node src/listener.mjs allowUnsafe",
"start:test": "docker-compose up -d && node src/listener.mjs test",
"start:test:unsafe": "docker-compose up -d && node src/listener.mjs test allowUnsafe",
"test": "yarn node --experimental-vm-modules $(yarn bin jest)",
"lint": "eslint . --ext .js,.mjs",
"lint:fix": "eslint . --ext .js,.mjs --fix",
"prettier:format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"engines": {
"node": ">=16.5"
},
"dependencies": {
"@koa/cors": "4.0.0",
"@koa/router": "12.0.0",
"@types/jest": "^29.4.0",
"arweave": "1.11.6",
"better-sqlite3": "8.1.0",
"bullmq": "^3.2.0",
"eslint-plugin-jest": "^27.2.1",
"ioredis": "^5.2.4",
"knex": "^2.2.0",
"koa": "^2.13.4",
"koa-bodyparser": "4.3.0",
"koa-compress": "^5.1.0",
"supertest": "^6.3.3",
"warp-contracts": "^1.2.17"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"jest": "^29.4.1"
}
}