-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.63 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.63 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
59
60
61
62
63
{
"name": "auco",
"version": "0.1.7",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"chain": "starknet-devnet --state-archive-capacity full --seed 0",
"build": "tsc --skipLibCheck",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"postinstall": "npx patch-package",
"test": "jest --passWithNoTests --forceExit --config ./jest.config.js"
},
"overrides": {
"chalk": "4.1.2",
"strip-ansi": "6.0.1",
"string-length": "4.0.2",
"color-convert": "3.1.3",
"color-name": "2.1.0",
"is-core-module": "2.13.1",
"error-ex": "1.3.4",
"has-ansi": "6.0.2"
},
"dependencies": {
"commander": "^11.1.0",
"@types/better-sqlite3": "^7.6.13",
"abi-wan-kanabi": "2.2.4",
"better-sqlite3": "^12.2.0",
"mysql2": "^3.14.1",
"patch-package": "^8.0.0",
"pg": "^8.11.0",
"starknet": "7.6.2",
"terminal-size": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/pg": "^8.10.2",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.5.2",
"prettier": "^3.5.3",
"ts-jest": "^29.1.1",
"typescript": "^5.0.0"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"bin": {
"abi-downloader": "./dist/scripts/download-abi.js"
}
}