-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.03 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
{
"name": "pnetwork-v4",
"version": "0.0.0",
"private": true,
"description": "pNetwork v4 monorepo",
"type": "module",
"author": "pNetwork Devs",
"license": "MIT",
"workspaces": [
"cpp",
"solidity",
"javascript/*"
],
"scripts": {
"test": "yarn workspaces foreach --all --parallel --no-private run test",
"lint": "yarn workspaces foreach --all --parallel --no-private run lint",
"build": "yarn workspaces foreach --all --parallel --no-private run build",
"prettier": "yarn workspaces foreach --all --parallel --no-private run prettier",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/eslint__js": "^8.42.3",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "3.3.2",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^5.0.1",
"typescript": "4.7.4",
"typescript-eslint": "^7.13.1"
},
"packageManager": "[email protected]",
"dependencies": {
"husky": "^9.1.6"
}
}