-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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
{
"name": "@kadena/chainweb-stream",
"version": "0.0.4",
"main": "src/server.js",
"type": "module",
"private": false,
"author": "Will Martino <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12"
},
"scripts": {
"start": "node --no-warnings=ExperimentalWarning --loader ts-node/esm ./src/index.ts",
"build": "tsc",
"build:watch": "tsc -w",
"format": "prettier -w ./src",
"knip": "knip",
"lint": "eslint ./src",
"test": "echo \"No tests yet\""
},
"dependencies": {
"@kadena-dev/eslint-config": "^0.0.8",
"@rushstack/eslint-config": "^3.3.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-sse": "github:Takadenoshi/express-sse#0.0.4",
"helmet": "^5.0.2",
"lodash": "^4.17.21",
"markdown-table": "^3.0.3",
"msw": "^0.39.2",
"node-fetch": "^3.2.3",
"npmlog": "^7.0.1",
"redis": "^4.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/node-fetch": "^2.6.2",
"babel-jest": "^29.5.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"knip": "^2.6.1",
"prettier": "2.6.2"
}
}