forked from 0xProject/0x-mesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.46 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
{
"name": "0x-mesh",
"version": "0.0.1",
"engines": {
"node": ">=11"
},
"workspaces": [
"packages/mesh-graphql-client"
],
"scripts": {
"wsrun": "wsrun",
"build": "wsrun --stages --fast-exit --exclude-missing build",
"build:ts": "tsc -b",
"watch:ts": "tsc -b -w",
"clean": "wsrun --fast-exit --exclude-missing clean",
"docs:md": "wsrun --fast-exit --exclude-missing docs:md",
"lint": "wsrun lint",
"prettier": "prettier --write '**/*.{ts,tsx,json,md}' --config .prettierrc",
"prettier:ci": "prettier --list-different '**/*.{ts,tsx,json,md}' --config .prettierrc",
"test": "wsrun --fast-exit --exclude-missing test "
},
"description": "A peer-to-peer network for sharing orders",
"main": "index.js",
"repository": "[email protected]:0xProject/0x-mesh.git",
"private": true,
"devDependencies": {
"@0x/ts-doc-gen": "^0.0.16",
"@0x/tslint-config": "^4.0.0",
"@types/base64-arraybuffer": "^0.1.0",
"es6-promise": "^4.2.6",
"ignore-loader": "^0.1.2",
"isomorphic-fetch": "^3.0.0",
"prettier": "^2.1.2",
"ts-loader": "^8.0.5",
"tslint": "6.1.3",
"typescript": "^4.0.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"wrtc": "0.4.1",
"wsrun": "^5.2.0"
},
"resolutions": {
"@0x/ts-doc-gen/typedoc-plugin-markdown": "2.2.x"
}
}