-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.62 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
{
"name": "@verida/network-data-api",
"version": "0.2.0",
"description": "An API that returns public data from the Verida network",
"main": "dist/server.js",
"scripts": {
"prebuild": "echo 'export const Version = { version: \"'$npm_package_version'\", build_utc: \"'$(date -u -Iseconds)'\" };' > ./src/version.ts",
"dev": "yarn build; nodemon src/server.js",
"build": "rm -rf dist && tsc",
"prestart": "yarn build",
"start": "node dist/server.js",
"tests": "ts-mocha './tests/**/*.ts'",
"svl-offline": "yarn build && serverless offline",
"deploy-prod": "export AWS_PROFILE=verida-original && yarn build && yarn sls deploy --stage prod",
"deploy-prod-nobuild": "export AWS_PROFILE=verida-original && yarn sls deploy --stage prod"
},
"repository": "https://github.com/verida/network-data-api",
"author": "Verida",
"license": "ISC",
"private": false,
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@verida/client-ts": "^4.1.3-rc1.1",
"@verida/helpers": "^4.1.2-rc1",
"@verida/types": "^4.1.2-rc1",
"@verida/vda-did-resolver": "^4.1.3-rc1.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"lodash": "^4.17.21",
"redis": "^4.6.13",
"serverless-http": "^3.2.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"mocha": "^10.2.0",
"nodemon": "^2.0.21",
"serverless": "^3.38.0",
"serverless-offline": "^12.0.4",
"serverless-plugin-common-excludes": "^4.0.0",
"serverless-plugin-include-dependencies": "^5.0.0",
"typescript": "^4.9.5"
}
}