forked from argotorg/sourcify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.77 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.77 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
{
"name": "sourcify-monorepo",
"private": true,
"version": "1.5.2",
"description": "Monorepo containing all Sourcify packages, and services",
"workspaces": [
"packages/*",
"services/*"
],
"scripts": {
"build:clean": "rm -rf node_modules services/monitor/node_modules services/database/node_modules services/server/node_modules packages/bytecode-utils/node_modules/ packages/compilers/node_modules/ packages/lib-sourcify/node_modules/ && npm install && npx lerna run build",
"build:lerna": "lerna run build",
"server:start": "cd services/server && node ./dist/server/cli.js",
"monitor:start": "node ./services/monitor/dist/index.js",
"4byte:start": "node ./services/4byte/dist/cli.js",
"update-chains": "node --experimental-fetch scripts/updateChains.mjs && prettier --write services/server/src/chains.json",
"lerna-test": "lerna run test --stream",
"lerna-lint": "lerna run check",
"lerna-fix": "lerna run fix",
"lerna-version": "lerna version --no-push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/argotorg/sourcify.git"
},
"keywords": [
"ethereum",
"solidity",
"verification",
"bytecode",
"metadata"
],
"author": "sourcifyeth",
"license": "MIT",
"bugs": {
"url": "https://github.com/argotorg/sourcify/issues"
},
"homepage": "https://sourcify.dev",
"devDependencies": {
"@google-cloud/bigquery": "8.1.1",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.2",
"eslint-plugin-no-only-tests": "3.3.0",
"lerna": "8.2.4",
"prettier": "3.8.1",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"optionalDependencies": {
"fsevents": "2.3.3"
}
}