forked from ethereum/sourcify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.69 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
{
"name": "sourcify-monorepo",
"private": true,
"version": "1.2.7",
"description": "Monorepo containing all Sourcify packages, and services",
"workspaces": [
"packages/*",
"services/*",
"ui"
],
"scripts": {
"build:clean": "rm -rf node_modules services/monitor/node_modules services/server/node_modules packages/bytecode-utils/node_modules/ packages/contract-call-decoder/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/server.js",
"ui:start": "cd ui && npm run start",
"monitor:start": "node ./services/monitor/dist/index.js",
"update-chains": "node --experimental-fetch scripts/updateChains.mjs && prettier --write services/server/src/chains.json",
"test:chains": "cd services/server && npm run test:chains",
"lerna-test": "lerna run test --stream",
"lerna-lint": "lerna run lint",
"lerna-version": "lerna version --no-push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/sourcify.git"
},
"keywords": [
"ethereum",
"solidity",
"verification",
"bytecode",
"metadata"
],
"author": "sourcifyeth",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereum/sourcify/issues"
},
"homepage": "https://sourcify.dev",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"ganache": "^7.9.1",
"lerna": "^7.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
},
"optionalDependencies": {
"fsevents": "*"
}
}