-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.21 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.21 KB
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
{
"name": "cache-engine",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p .",
"node": "ts-node --require tsconfig-paths/register dist/subscribeNode.js",
"node-dev": "nodemon --watch src --ext ts --exec 'ts-node --require tsconfig-paths/register src/subscribeNode.ts'",
"fetch": "ts-node --require tsconfig-paths/register dist/fetchBlocks.js",
"fetch-dev": "nodemon --watch src --ext ts --exec 'ts-node --require tsconfig-paths/register src/fetchBlocks.ts'",
"app": "ts-node --require tsconfig-paths/register dist/app.js",
"app-dev": "nodemon --watch src --ext ts --exec 'ts-node --require tsconfig-paths/register src/app.ts'",
"testquery": "ts-node --require tsconfig-paths/register dist/testquery.js",
"testquery-dev": "nodemon --watch src --ext ts --exec 'ts-node --require tsconfig-paths/register src/testquery.ts'"
},
"author": "",
"license": "ISC",
"dependencies": {
"@polkadot/api": "^10.10.1",
"@polkadot/types-codec": "^10.11.1",
"@prisma/client": "^5.19.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/winston": "^2.4.4",
"axios": "^1.3.3",
"bignumber.js": "^9.1.2",
"commander": "^9.0.0",
"cookie": "^0.5.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"country-list": "^2.3.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"formidable": "^2.1.1",
"fs": "^0.0.1-security",
"i18n-iso-countries": "^7.11.1",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"node-cron": "^3.0.2",
"uri-template": "^2.0.0",
"validator": "^13.7.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/cookie": "^0.5.1",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/country-list": "^2.1.4",
"@types/formidable": "^2.0.5",
"@types/jsonwebtoken": "^9.0.5",
"@types/lodash": "^4.17.0",
"@types/node": "^17.0.40",
"@types/node-cron": "^3.0.7",
"@types/validator": "^13.7.10",
"nodemon": "^3.0.2",
"prisma": "^5.19.0",
"ts-node": "^10.8.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.7.3"
}
}