-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.2 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
{
"private": true,
"name": "pact-socket-server",
"version": "1.0.0",
"description": "A WebSocket server, room-based, on CloudFlare Workers Durable Objects, packed with useful functionality: Interactive Polls, Interactive Ephemeral Polls, Chat, User Properties, Interactive Counters, Relay Support & more",
"module": "./dist/index.mjs",
"scripts": {
"build": "rollup -c",
"test": "jest",
"format": "prettier --write '**/*.{js,css,json,md}'"
},
"author": "Alex Leclair <[email protected]>",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^2.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/is-odd": "^3.0.0",
"@types/jest": "^26.0.23",
"isomorphic-fetch": "^3.0.0",
"jest": "^26.6.3",
"prettier": "^1.19.1",
"rollup": "^2.36.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.5.6",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"dependencies": {
"@cfworker/uuid": "^1.8.3",
"@types/cookie": "^0.4.1",
"cookie": "^0.4.1",
"is-even": "^1.0.0",
"rollup-plugin-html": "^0.2.1"
}
}