forked from matter-labs/block-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.49 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
{
"name": "block-explorer",
"version": "1.0.0-development",
"title": "zkSync Era Block Explorer",
"description": "zkSync Era Block Explorer",
"author": "Matter Labs",
"license": "MIT",
"repository": "https://github.com/matter-labs/block-explorer",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install || true",
"lint": "lerna run lint",
"test": "lerna run test",
"test:ci": "lerna run test:ci",
"test:e2e": "lerna run test:e2e",
"dev": "lerna run dev",
"build": "lerna run build",
"start": "lerna run start",
"db:create": "lerna run db:create",
"db:drop": "lerna run db:drop",
"hyperchain:configure": "ts-node scripts/setup-hyperchain-config"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@matterlabs/prettier-config": "^1.0.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^9.0.0",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/node": "18.17.18",
"eslint": "8.48.0",
"husky": "8.0.1",
"lerna": "^7.2.0",
"prettier": "2.8.4",
"semantic-release": "^21.1.1",
"typescript": "4.7.4",
"enquirer": "2.3.6",
"dotenv": "16.1.4",
"pg-connection-string": "2.6.2"
},
"engines": {
"npm": ">=9.0.0",
"node": ">=18.0.0"
}
}