-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.05 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
{
"name": "twitter-streaming-crypto",
"version": "0.0.1",
"description": "TypeScript/Node.js framework for processing Twitter data stream.",
"scripts": {
"build": "rimraf build && tsc -b",
"copyright": "[ `find src -name \"*.[jt]s\" | wc -l` -eq `find src -name \"*.[jt]s\" -exec grep \"Copyright 2021 Twitter\" {} \\; | wc -l` ] || echo Error: Missing copyright header",
"clean": "rimraf build node_modules package-lock.json",
"watch": "rimraf build && tsc -b tsconfig.json -w",
"crypto:start": "node build/app/crypto --stream --api",
"crypto:start:db": "node build/app/crypto --streamdb --apidb"
},
"author": "hexome",
"license": "Apache-2.0",
"devDependencies": {
"@types/memory-cache": "^0.2.2",
"@types/node": "^16.11.4",
"@types/rimraf": "^3.0.2",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"engines": {
"node": "16.x"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.39.0",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"memory-cache": "^0.2.0"
}
}