-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.63 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
{
"name": "root",
"type": "module",
"version": "1.0.0",
"private": true,
"repository": "git@github.com:dappnode/DNP_DAPPMANAGER.git",
"license": "GPL-3.0",
"engines": {
"node": "20.x"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach --all -pt run build",
"test": "yarn workspaces foreach --all -pt run test",
"test:int": "yarn workspaces foreach --all -pt run test:int",
"dev": "yarn workspaces foreach --all -pi -j unlimited run dev",
"lint": "eslint 'packages/**/src/**/*.{js,ts,tsx}' 'packages/**/test/**/*.{js,ts,tsx}' --ignore-pattern 'packages/common/src/validation/schemas/**/*.{js,ts,tsx}'",
"lint:fix": "eslint 'packages/**/src/**/*.{js,ts,tsx}' 'packages/**/test/**/*.{js,ts,tsx}' --fix --ignore-pattern 'packages/common/src/validation/schemas/**/*.{js,ts,tsx}'",
"format": "prettier --write 'packages/**/src/**/*.{js,ts,tsx,json,md}' 'packages/**/test/**/*.{js,ts,tsx,json,md}'",
"mock-standalone:build": "yarn workspace @dappnode/admin-ui run mock-standalone:build",
"mock-standalone": "yarn workspace @dappnode/admin-ui run mock-standalone",
"generate": "yarn workspace @dappnode/common run generate"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@types/node": "22.13.9",
"chai": "^4.5.0",
"depcheck": "^1.4.7",
"eslint": "^9.39.5",
"mocha": "^12.0.0",
"nodemon": "^3.1.14",
"prettier": "^3.9.6",
"rimraf": "^3.0.2",
"tsx": "^4.23.13",
"typescript": "5.8.2",
"typescript-eslint": "^8.70.0"
},
"packageManager": "yarn@4.7.0"
}