-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.68 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
{
"name": "@verida/user-data-api",
"version": "0.0.1",
"description": "Verida User Data API",
"main": "dist/server.js",
"scripts": {
"dev": "yarn build; nodemon src/server.js",
"build": "rm -rf dist && tsc && rm -rf dist/assets && cp -R assets dist/",
"prestart": "yarn build",
"start": "node dist/server.js",
"tests": "ts-mocha './tests/**/*.ts'",
"tests-report-json": "ts-mocha './test/**/*.ts' --reporter json > test-results.json",
"test": "ts-mocha",
"lambda-deploy": "rm -rf dist && tsc && yarn claudia create --region us-east-1 --handler lambda.handler --deploy-proxy-api --no-optional-dependencies",
"lambda-update": "rm -rf dist && tsc && yarn claudia update",
"lambda-pack": "rm -rf dist && tsc && yarn claudia pack --no-optional-dependencies"
},
"repository": {
"type": "git",
"url": "git+https://github.com/verida/user-data-api.git"
},
"author": "Verida",
"license": "ISC",
"bugs": {
"url": "https://github.com/verida/user-data-api/issues"
},
"engines": {
"node": ">=16.06"
},
"homepage": "https://github.com/verida/user-data-api#readme",
"dependencies": {
"@verida/account-node": "^3.0.2",
"@verida/client-ts": "^3.0.3",
"@verida/types": "^3.0.1",
"aws-serverless-express": "^3.4.0",
"axios": "^1.2.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lodash": "^4.17.21",
"log4js": "^6.4.1",
"nano": "^9.0.5",
"ts-mocha": "^9.0.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.0",
"claudia": "^5.14.1",
"mocha": "^9.2.1",
"nodemon": "^2.0.14",
"typescript": "4.6.3"
}
}