-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "wilddrop",
"version": "1.5.3",
"type": "module",
"license": "MIT",
"author": "Tubbly",
"scripts": {
"dev": "dotenvx run -- nodemon -q src/index.ts",
"dev2": "dotenvx run -- nodemon -q src/test.ts",
"start": "dotenvx run -- ts-node src/index.ts",
"prod": "node dist/index.js",
"build": "tsc"
},
"devDependencies": {
"@mikro-orm/cli": "^6.2.0",
"@mikro-orm/reflection": "^6.2.0",
"@types/node": "^20.12.7",
"@types/slug": "^5.0.8",
"@types/yargs": "^17.0.32",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"yargs": "^17.7.2"
},
"dependencies": {
"@dotenvx/dotenvx": "^0.32.0",
"@mikro-orm/core": "^6.2.0",
"@mikro-orm/migrations": "^6.2.0",
"@mikro-orm/postgresql": "^6.2.0",
"@mikro-orm/sql-highlighter": "^1.0.1",
"@noble/ed25519": "^2.1.0",
"@polkadot/api": "^10.12.6",
"@polkadot/api-contract": "^10.12.6",
"blakejs": "^1.2.1",
"bn.js": "^5.2.1",
"bs58": "^5.0.0",
"dayjs": "^1.11.10",
"fastify": "^4.26.2",
"fastify-plugin": "^4.5.1",
"zod": "^3.22.4"
},
"mikro-orm": {
"useTsNode": true
},
"ts-node": {
"esm": true
}
}