forked from dappnode/DNP_DAPPMANAGER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.24 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
{
"name": "@dappnode/dappnode",
"type": "module",
"version": "1.0.0",
"private": true,
"repository": "[email protected]:dappnode/DNP_DAPPMANAGER.git",
"license": "GPL-3.0",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "lerna run build --include-dependencies --stream",
"test": "lerna run test --stream",
"lint": "lerna run lint --stream",
"test:int": "lerna run test:int --stream",
"pre-commit": "lerna run pre-commit --stream",
"mock-standalone:build": "lerna run mock-standalone:build --stream",
"postinstall": "patch-package",
"generate": "lerna run generate --stream",
"clean": "yarn run clean:build && yarn run clean:libraries",
"clean:libraries": "rimraf packages/**/node_modules && rimraf node_modules",
"clean:build": "rimraf packages/**/dist && rimraf packages/**/build"
},
"dependencies": {
"patch-package": "^6.5.1",
"postinstall-postinstall": "^2.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-react-app": "^7.0.1",
"lerna": "^6.3.0",
"rimraf": "^3.0.2",
"ts-node": "^10.8.1",
"typescript": "^5.0.4"
}
}