-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 838 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 838 Bytes
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
{
"name": "@bitmatrix/ba-api",
"version": "0.0.1",
"description": "bitmatrix-aggregate-api",
"main": "app.js",
"scripts": {
"build": "tsc",
"test": "jest",
"dev": "yarn build && node ./dist/app.js",
"start": "node ./dist/app.js"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/node": "^16.9.6",
"@types/rocksdb": "^3.0.1",
"babel-jest": "^27.2.1",
"jest": "^27.2.1",
"typescript": "^4.4.3"
},
"license": "MIT",
"dependencies": {
"@bitmatrix/models": "^0.1.48",
"cors": "^2.8.5",
"express": "^4.17.1",
"ioredis": "^5.2.2",
"rocksdb": "^5.2.1",
"socket.io": "^4.5.1"
}
}