-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
{
"name": "cermodel-server",
"version": "1.0.0",
"description": "deploys models to a ceramic node.",
"scripts": {
"build": "yarn tsc",
"start": "node lib/index.js",
"dev": "concurrently \"yarn tsc --watch\" \"nodemon -q lib/index.js\""
},
"type": "module",
"dependencies": {
"@ceramicnetwork/http-client": "^2.0.4",
"@glazed/datamodel": "^0.3.1",
"@glazed/devtools": "^0.2.0",
"@glazed/did-datastore": "^0.3.2",
"cors": "^2.8.5",
"dids": "^3.1.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"key-did-provider-ed25519": "^2.0.0",
"key-did-resolver": "^2.0.4",
"minimist": "^1.2.7",
"multer": "^1.4.5-lts.1",
"uint8arrays": "^3.0.0",
"web3.storage": "^4.4.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.41",
"concurrently": "^7.2.1",
"nodemon": "^2.0.16",
"typescript": "^4.7.3"
},
"main": "src/index.ts",
"author": "kelvinpraises, Ayocodes",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kelvinpraises/cermodel-server.git"
},
"bugs": {
"url": "https://github.com/kelvinpraises/cermodel-server/issues"
},
"homepage": "https://github.com/kelvinpraises/cermodel-server#readme"
}