-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
37 lines (37 loc) · 955 Bytes
/
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
{
"name": "next-plugin-websocket",
"version": "0.1.2",
"description": "Add WebSocket support to Next.js API routes",
"main": "dist/index.js",
"repository": "github.com/sam3d/next-plugin-websocket",
"author": "Sam Holmes",
"license": "MIT",
"files": [
"dist/**/*"
],
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"prepare": "tsc",
"format": "prettier --write \"**/*.{js,ts,md,json}\"",
"postinstall": "node dist/patch.js"
},
"dependencies": {
"@babel/generator": "7.20.14",
"@babel/parser": "7.20.15",
"@babel/template": "7.20.7",
"@babel/types": "7.20.7",
"@types/ws": "8.5.4",
"ws": "8.12.0"
},
"devDependencies": {
"@types/babel__generator": "7.6.4",
"@types/babel__template": "7.4.1",
"@types/node": "18.13.0",
"next": "13.1.6",
"prettier": "2.8.4",
"prettier-plugin-organize-imports": "3.2.2",
"typescript": "4.9.5",
"webpack": "5.75.0"
}
}