-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.18 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
{
"private": true,
"author": "Eric McDaniel <eric.g.mcdaniel@gmail.com>",
"description": "",
"devDependencies": {
"@types/jest": "24.0.15",
"@types/shortid": "0.0.29",
"@types/ws": "6.0.1",
"husky": "2.7.0",
"jest": "24.8.0",
"lerna": "3.15.0",
"lint-staged": "8.2.1",
"mock-socket": "7.1.0",
"prettier": "1.18.2",
"puppeteer": "1.18.1",
"ts-jest": "^25.4.0",
"ts-loader": "^7.0.2",
"typescript": "3.5.2",
"webpack": "4.35.0",
"webpack-cli": "3.3.5",
"webpack-node-externals": "1.7.2"
},
"license": "ISC",
"lint-staged": {
"*.{ts,json}": [
"git add",
"prettier --trailing-comma=all --print-width=70 --no-semi --write"
]
},
"main": "lib/server.js",
"name": "web-udp",
"scripts": {
"clean": "lerna exec -- rm -rf ./dist/* && lerna clean --yes",
"format": "prettier packages/**/*.ts --write",
"bootstrap": "lerna bootstrap --hoist",
"build": "lerna run build",
"precommit": "lint-staged",
"start": "node examples/server.js",
"test": "jest",
"test-coverage": "jest --verbose --coverage"
},
"version": "4.0.0",
"dependencies": {},
"workspaces": [
"packages/*"
]
}