-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.27 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
{
"name": "webserver",
"version": "3.1.0",
"private": true,
"scripts": {
"prestart": "npm install",
"build": "tsc -p tsconfig.build.json",
"test": "jest --colors test/*.ts",
"newman": "newman run test/renderstreaming.postman_collection.json",
"start": "node ./build/index.js",
"dev": "ts-node ./src/index.ts",
"lint": "eslint src/**/*.ts test/**/*.ts",
"pack": "pkg ."
},
"dependencies": {
"@types/express": "^4.17.13",
"@types/node": "^11.15.54",
"@types/ws": "^7.4.7",
"debug": "~2.6.9",
"express": "~4.16.4",
"morgan": "^1.10.0",
"uuid": "^3.4.0",
"ws": "^7.5.5"
},
"devDependencies": {
"@jest-mock/express": "^1.4.5",
"@types/jest": "^27.0.2",
"@types/morgan": "^1.9.3",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^24.5.2",
"jest": "^27.2.0",
"jest-websocket-mock": "^2.2.1",
"mock-socket": "^9.0.5",
"newman": "^5.3.0",
"pkg": "^4.5.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^3.9.10"
},
"bin": {
"webserver": "build/index.js"
},
"pkg": {
"assets": [
"client/public/**/*"
],
"targets": [
"node10"
]
}
}