-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.03 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
{
"name": "@fancysofthq/supatalent-api",
"version": "0.3.2",
"description": "API for the SupaTalent application",
"author": {
"name": "Fancy Software",
"url": "http://fancysoft.eth"
},
"repository": "git+https://github.com/fancysofthq/supatalent-api.git",
"license": "UNLICENSED",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"main": "index.js",
"type": "module",
"engines": {
"node": "^18.0",
"npm": "^8.0"
},
"scripts": {
"clean": "rm -r dist",
"build": "tsc && resolve-tspaths --src .",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon",
"start": "node --experimental-specifier-resolution=node dist/src/index.js",
"db:migrate": "node --experimental-specifier-resolution=node dist/scripts/db/migrate.js"
},
"dependencies": {
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@fancysoft/contracts": "^0.1.0",
"@fancysofthq/supabase": "0.4.1-rc1",
"@koa/cors": "^3.3.0",
"@koa/router": "^10.1.1",
"@multiformats/sha3": "^2.0.14",
"better-sqlite3": "^8.0.1",
"dotenv": "^16.0.0",
"ethers": "^5.7.2",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-logger": "^3.2.1",
"multiformats": "^10.0",
"nanoid": "^4.0.0",
"node-fetch": "^3.3.0",
"p-retry": "^5.1.2",
"web3-token": "^1.0.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.3",
"@types/jsonwebtoken": "^8.5.9",
"@types/koa": "^2.13.5",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-logger": "^3.1.2",
"@types/koa__cors": "^3.3.0",
"@types/koa__router": "^12.0.0",
"@types/node": "^18.11.9",
"nodemon": "^2.0.20",
"resolve-tspaths": "^0.8.3",
"typescript": "^4.9.3"
},
"files": [
"dist/src/server/types.js",
"dist/src/server/types.d.ts"
],
"exports": {
"./server": "./dist/src/server/types.js"
},
"typesVersions": {
"*": {
"server": [
"dist/src/server/types.d.ts"
]
}
}
}