-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.39 KB
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
{
"name": "@deepnotes/realtime-server",
"version": "1.0.0",
"dependencies": {
"@deeplib/data": "workspace:*",
"@deeplib/misc": "workspace:*",
"@stdlib/base64": "workspace:*",
"@stdlib/data": "workspace:*",
"@stdlib/misc": "workspace:*",
"cookie": "^0.5.0",
"dotenv": "^16.3.1",
"dotenv-expand": "9.0.0",
"ioredis": "npm:@deepnotes/ioredis@^5.3.1",
"jsonwebtoken": "^9.0.2",
"knex": "2.3.0",
"lib0": "^0.2.87",
"lodash": "^4.17.21",
"msgpackr": "^1.9.9",
"objection": "3.0.1",
"prom-client": "^15.0.0",
"unilogr": "^0.0.27",
"ws": "8.11.0"
},
"devDependencies": {
"@types/cookie": "^0.5.3",
"@types/jsonwebtoken": "^9.0.4",
"@types/lodash": "^4.14.200",
"@types/ws": "8.5.3",
"tsup": "^7.2.0"
},
"license": "MIT",
"scripts": {
"build": "tsc --build ./tsconfig.json && tsc-alias -p tsconfig.json",
"build:watch": "concurrently \"tsc --build ./tsconfig.json --watch\" \"tsc-alias -p tsconfig.json --watch\"",
"bundle": "tsup",
"clean": "rimraf --glob ./dist *.tsbuildinfo",
"dev": "tsx --inspect-brk ./src/index.ts",
"fix": "eslint --fix --ext .js,.ts,.vue ./",
"npkill": "rimraf --glob ./node_modules",
"preinstall": "npx only-allow pnpm",
"repo:build": "tsc-alias -p tsconfig.json",
"repo:build:watch": "tsc-alias -p tsconfig.json --watch",
"start": "tsx ./src/index.ts"
}
}