-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 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
44
45
46
{
"name": "zchain",
"version": "1.0.0",
"description": "",
"packageManager": "yarn@3.2.0",
"license": "Apache-2.0",
"private": true,
"type": "module",
"workspaces": [
"packages/y-libp2p",
"packages/zchain-core",
"apps/meow",
"packages/*",
"apps/*"
],
"engines": {
"node": ">=14.11.0"
},
"scripts": {
"build": "yarn workspaces run build",
"watch": "tsc --build --watch packages/y-libp2p packages/zchain-core packages/meow-cli apps/meow",
"lint": "yarn workspaces run lint",
"lint:fix": "yarn workspaces run lint:fix"
},
"peerDependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.36.0",
"@typescript-eslint/parser": "^5.36.0",
"eslint": "^8.23.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.15.0",
"mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"dependencies": {
"@types/node": "^18.6.1",
"chalk": "^5.0.1"
}
}