-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.94 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
{
"name": "@subsquid/manifest",
"type": "commonjs",
"version": "2.0.0-beta.13",
"homepage": "https://www.subsquid.io",
"repository": "https://github.com/subsquid/manifest.git",
"license": "GPL-3.0-or-later",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --fix src/**/*.ts",
"typecheck": "tsc --noEmit",
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"test": "jest --runInBand --testRegex=.test.ts",
"generate": "ts-node scripts/generate-rpc-endpoints.ts && eslint --fix src/rpc_networks.ts && ts-node scripts/generate-json-schema.ts"
},
"main": "./dist/index.js",
"files": [
"dist",
"networks.json"
],
"dependencies": {
"joi": "17.13.3",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/js-yaml": "^4.0.9",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"joi-to-json": "^4.2.1",
"prettier": "^3.2.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"src/**/{!(.spec),}.(t|j)s"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node",
"moduleNameMapper": {
"@libs/(.*)": "<rootDir>/libs/$1",
"@apps/(.+)": "<rootDir>/apps/$1",
"@apps": "<rootDir>/apps/index",
"@api/(.+)": "<rootDir>/api/$1"
}
},
"packageManager": "[email protected]+sha512.ec40d0639bb307441b945d9467139cbb88d14394baac760b52eca038b330d16542d66fef61574271534ace5a200518dabf3b53a85f1f9e4bfa37141b538a9590"
}