-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 884 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
38
39
40
{
"name": "pujo-ws-server",
"version": "0.1.0",
"module": "index.ts",
"type": "module",
"devDependencies": {
"@types/minimist": "^1.2.4",
"@types/node": "20.8.2",
"bun-types": "latest",
"gts": "^5.2.0",
"minimist": "^1.2.8",
"typescript": "~5.2.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"dotenv": "^16.3.1",
"postgres": "^3.4.0",
"pujo-puyo-core": "github:frostburn/pujo-puyo-core",
"ws": "^8.14.2"
},
"engines": {
"node": ">=18.13.0"
},
"scripts": {
"init-db": "node src/init-db.js",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"optionalDependencies": {
"bufferutil": "^4.0.8",
"utf-8-validate": "^6.0.3"
}
}