-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.27 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "Booka-API",
"version": "0.2.1",
"license": "MIT",
"scripts": {
"build": "npx ts-node build.ts",
"lint": "npx eslint --ext .ts src/",
"lint:tests": "npx eslint --ext .ts spec/",
"start": "node -r module-alias/register ./dist --env=production",
"start-chain": "node -r module-alias/register ./dist/chainServer --env=production",
"dev": "nodemon",
"dev-chain": "nodemon --config ./src/chainServer/nodemon.json",
"test": "nodemon --config ./spec/nodemon.json",
"test:no-reloading": "npx ts-node --files -r tsconfig-paths/register ./spec",
"migrate:generate": "npx sequelize-cli migration:generate --name",
"migrate:up": "npx sequelize-cli db:migrate",
"migrate:down": "npx sequelize-cli db:migrate:undo"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts, html",
"ignore": [
"src/public"
],
"exec": "./node_modules/.bin/ts-node --files -r tsconfig-paths/register ./src"
},
"_moduleAliases": {
"@src": "dist"
},
"engines": {
"node": ">=16.19.0"
},
"dependencies": {
"@aws-crypto/sha256-browser": "^5.2.0",
"@ethereumjs/util": "^8.0.6",
"@metamask/eth-sig-util": "^6.0.0",
"@playnation/game-sdk": "^1.0.9",
"@polkadot/api": "^12.1.1",
"@polkadot/types": "^12.1.1",
"@polkadot/types-augment": "^12.1.1",
"@polkadot/types-codec": "^12.1.1",
"@polkadot/ui-keyring": "^3.6.6",
"@polkadot/util": "^12.6.2",
"@polkadot/util-crypto": "^12.6.2",
"@subwallet/chain-list": "^0.2.71",
"body-parser": "^1.20.2",
"connect-redis": "^7.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ethereum-cryptography": "2.0.0",
"eventemitter3": "^5.0.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-session": "^1.18.0",
"helmet": "^6.0.1",
"inserturlparams": "^1.0.1",
"jet-logger": "^1.3.1",
"jet-validator": "^1.0.4",
"jsonfile": "^6.1.0",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.2",
"mongoose": "^7.3.2",
"morgan": "^1.10.0",
"node-fetch": "2.6.12",
"pg": "^8.11.1",
"pg-hstore": "^2.3.4",
"redis": "^4.6.7",
"rmrk-tools": "^2.1.8",
"sequelize": "^6.32.1",
"ts-command-line-args": "^2.4.2",
"uuid": "^9.0.0",
"web3.storage": "^4.5.4"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-session": "^1.18.0",
"@types/find": "^0.2.1",
"@types/fs-extra": "^11.0.1",
"@types/jasmine": "^4.3.1",
"@types/jest": "^29.5.3",
"@types/jsonfile": "^6.1.1",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.4",
"@types/node": "^18.15.9",
"@types/node-fetch": "^2.6.4",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.51.0",
"eslint-plugin-node": "^11.1.0",
"find": "^0.3.0",
"fs-extra": "^11.1.1",
"jasmine": "^4.6.0",
"jest": "^29.6.1",
"nodemon": "^2.0.22",
"sequelize-cli": "^6.6.2",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^5.1.6"
},
"resolutions": {}
}