forked from kapv89/yjs-scalable-ws-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.55 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
{
"name": "crdt-backend",
"type": "module",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "node -r source-map-support/register -r dotenv/config dist/__tests__/main.js dotenv_config_path=.env.test.local",
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"watch": "npm run clean && tsc -w",
"dev": "nodemon -r source-map-support/register -r dotenv/config dist/app.js dotenv_config_path=.env.local",
"tables": "node -r source-map-support/register -r dotenv/config dist/tables.js dotenv_config_path=.env.local"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/date-fns": "^2.6.0",
"@types/express": "^4.17.13",
"@types/faker": "^5.5.8",
"@types/ioredis": "^4.27.4",
"@types/knex": "^0.16.1",
"@types/lodash": "^4.14.175",
"@types/winston": "^2.4.4",
"@types/ws": "^8.2.0",
"@types/wtfnode": "^0.7.0",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"faker": "^5.5.3",
"lodash": "^4.17.21",
"nodemon": "^2.0.13",
"source-map-support": "^0.5.20",
"typescript": "^4.4.3",
"ws": "^8.2.2",
"wtfnode": "^0.9.1",
"y-websocket": "^1.3.16"
},
"dependencies": {
"date-fns": "^2.24.0",
"express": "^4.17.1",
"ioredis": "^4.27.9",
"knex": "^0.95.11",
"lib0": "^0.2.42",
"pg": "^8.7.1",
"winston": "^3.3.3",
"winston-console-format": "^1.0.8",
"y-protocols": "^1.0.5",
"yjs": "^13.5.12"
}
}