-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.7 KB
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": "super-processor",
"description": "An Aptos Super Processor for Many Coprocessors",
"version": "0.1.0",
"packageManager": "pnpm@8.6.2",
"license": "Apache-2.0",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"prepare": "husky",
"precommit": "pnpm fmt && pnpm lint",
"start": "ts-node ./src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint '**/*.{ts,tsx}'",
"fmt": "prettier --write '**/*.(ts|tsx)'",
"pg:list": "./scripts/list-databases.sh",
"pg:start": "./scripts/setup-database.sh",
"pg:stop": "brew services stop postgresql",
"pg:restart": "brew services restart postgresql",
"pg:reset": "./scripts/reset-database.sh",
"pg:delete": "./scripts/delete-database.sh",
"pg:describe": "./scripts/describe-database.sh"
},
"dependencies": {
"@aptos-labs/aptos-processor-sdk": "=0.2.0",
"@mikro-orm/core": "^6.3.10",
"@mikro-orm/postgresql": "^6.3.10",
"colorette": "^2.0.20",
"commander": "^11.0.0",
"dotenv": "^16.4.5",
"pg": "^8.11.3",
"typeorm": "=0.3.17"
},
"devDependencies": {
"@mikro-orm/sqlite": "^6.3.10",
"@types/jest": "^29.5.13",
"@types/node": "^18.17.13",
"@typescript-eslint/eslint-plugin": "5.36.2",
"@typescript-eslint/parser": "5.36.2",
"eslint": "^8.48.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"lint-staged": {
"*": "pnpm lint"
}
}