-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.85 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
{
"name": "@proxima-one/mangrove-streaming-app",
"version": "0.1.0",
"description": "mangrove-streaming-app",
"license": "MIT",
"repository": "",
"author": {
"name": "",
"email": "",
"url": ""
},
"keywords": [
""
],
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist && rimraf coverage",
"format": "prettier --write \"{src,__tests__}/**/*.ts\"",
"lint": "eslint ./src --ext .ts",
"prepublishOnly": "yarn build",
"prebuild": "yarn clean && yarn format && yarn lint && echo Using TypeScript && tsc --version",
"build": "tsc --project tsconfig.build.json --pretty",
"test": "jest --passWithNoTests",
"coverage": "jest --coverage",
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"dev": "ts-node -r tsconfig-paths/register src/dev.ts",
"dev-kandel": "ts-node -r tsconfig-paths/register src/dev-kandel.ts",
"start:app": "yarn start app start --",
"watch": "yarn build -- --watch",
"watch:test": "jest --watch"
},
"dependencies": {
"@proxima-one/proxima-app-eth": "^1.0.7",
"@proxima-one/proxima-app-streaming": "^1.1.4",
"@proximaone/stream-schema-eth-base": "^0.4.2",
"@proximaone/stream-schema-ft": "^0.4.2",
"@proximaone/stream-schema-mangrove": "^0.4.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/node": "^14.18.4",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.6.0",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=16.0.0"
},
"jest": {
"preset": "<rootDir>/"
}
}