-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
50 lines (50 loc) · 1.91 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
{
"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/eslintrc": "^3.1.0",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^22.2.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"chai": "^4.3.10",
"depcheck": "^1.4.7",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.2",
"prettier": "^3.3.3",
"rimraf": "^3.0.2",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
},
"packageManager": "yarn@4.4.1"
}