generated from spknetwork/js-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.28 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "video-encoder",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"dependencies": {
"@2toad/diff-match-patch": "^1.0.2",
"@ceramicnetwork/http-client": "^2.30.0",
"@ceramicnetwork/stream-tile": "^2.1.3",
"@glazed/datamodel": "^0.3.1",
"@glazed/did-datastore": "^0.3.2",
"@hiveio/dhive": "^1.1.1",
"@nestjs/common": "^8.2.6",
"@nestjs/core": "^8.2.6",
"@nestjs/platform-express": "^8.3.0",
"@self.id/core": "^0.4.1",
"big.js": "^6.2.1",
"cli-progress": "^3.10.0",
"dotenv": "^16.0.1",
"execa": "^5.1.1",
"express": "^4.17.2",
"fast-json": "^2.1.1",
"graphql": "^15.8.0",
"graphql-scalars": "^1.20.1",
"graphql-type-json": "^0.3.2",
"graphql-yoga": "^3.7.3",
"ipfs-http-client": "^55.0.0",
"it-pushable": "^1.4.2",
"moment": "^2.29.3",
"mongodb": "^4.7.0",
"mongoose": "^7.0.2",
"node-schedule": "^2.1.1",
"p-queue": "^7.2.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5",
"twitter-text": "^3.1.0",
"winston": "^3.6.0"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"concurrently": "^7.6.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.7.0-dev.20220506"
},
"scripts": {
"build": "tsc -p ./tsconfig.json",
"dev": "ts-node-dev src/index.ts",
"dev-full": "concurrently \"npm run dev\" \"npm run start-workers\"",
"lint:fix": "eslint --fix \"src/**/*.{ts,tsx}\"",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"test:report": "sensible-browser ./coverage/lcov-report/index.html",
"test": "jest --coverage",
"ts-node": "npx ts-node",
"start-workers": "concurrently \"npm run start-worker:hive-events\" \"npm run start-worker:background-scripts\"",
"start-worker:hive-events": "node dist/workers/hive-stream.js",
"start-worker:hive-events-reindex": "node dist/workers/hive-stream-reindex.js",
"start-worker:background-scripts": "node dist/workers/background-proc/index.js"
},
"author": "",
"license": "ISC"
}