-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
71 lines (71 loc) · 2.29 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "dm3",
"license": "BSD-2-Clause",
"private": true,
"workspaces": {
"packages": [
"packages/lib/shared",
"packages/lib/server-side",
"packages/lib/crypto",
"packages/lib/profile",
"packages/lib/messaging",
"packages/lib/delivery",
"packages/lib/storage",
"packages/lib/delivery-api",
"packages/lib/test-helper",
"packages/lib/smart-account",
"packages/lib/offchain-resolver-api",
"packages/backend",
"packages/integration-tests",
"packages/offchain-resolver",
"packages/messenger-widget",
"packages/js-sdk",
"packages/messenger-demo",
"packages/next-messenger-demo",
"packages/messenger-web",
"packages/cli",
"packages/toplevel-alias",
"packages/delivery-service"
],
"nohoist": [
"**/react",
"**/react-dom"
]
},
"devDependencies": {
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"prettier": "^2.6.2"
},
"lint-staged": {
"*.{js,ts,tsx,json}": [
"prettier --write",
"eslint --fix"
]
},
"scripts": {
"cli": "yarn workspace dm3-cli start",
"docker:up": "cd packages/backend && docker-compose up -d",
"build": " yarn workspaces foreach -pt run build",
"start": "yarn workspace dm3-backend start",
"resolver": "yarn workspace dm3-offchain-resolver-backend start",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix",
"format": "prettier --write '*/**/*.{js,ts,tsx,json}'",
"format:check": "prettier --check '*/**/*.{js,ts,tsx,json}'",
"prepare": "husky install",
"test": "yarn workspaces foreach -p run test",
"publish:npm": "scripts/publish_npm.sh"
},
"packageManager": "[email protected]",
"resolutions": {
"autoprefixer": "10.4.5"
},
"dependencies": {
"react-circular-progressbar": "^2.1.0",
"react-spinners": "^0.13.8"
}
}