-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.42 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
{
"name": "photon-keyserver",
"version": "0.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/photon-sdk/photon-keyserver.git"
},
"scripts": {
"postinstall": "sls dynamodb install",
"start": "IS_OFFLINE=true sls offline start",
"test": "npm run test:lint && npm run test:unit && npm run test:ci",
"test:lint": "standard *.js 'src/**/*.js' 'test/**/*.js'",
"test:unit": "mocha test/unit/",
"test:integration": "IS_OFFLINE=true DYNAMODB_TABLE_KEY=photonsdk-keyserver-prod-key DYNAMODB_TABLE_USER=photonsdk-keyserver-prod-user mocha test/integration/",
"test:ci": "npm start & P1=$! && wait-on tcp:3000 && npm run test:integration && kill $P1"
},
"dependencies": {
"aws-sdk": "^2.1354.0",
"twilio": "^4.9.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"dynamodb-localhost": "https://github.com/99x/dynamodb-localhost#db30898f8c40932c7177be7b2f1a81360d12876d",
"frisbee": "^3.1.0",
"mocha": "^10.2.0",
"serverless": "^3.29.0",
"serverless-domain-manager": "^6.4.4",
"serverless-dynamodb-local": "^0.2.40",
"serverless-offline": "^12.0.4",
"sinon": "^15.0.3",
"standard": "^17.0.0",
"unexpected": "^13.1.0",
"wait-on": "^7.0.1"
},
"overrides": {
"serverless-dynamodb-local": {
"dynamodb-localhost": "https://github.com/99x/dynamodb-localhost#db30898f8c40932c7177be7b2f1a81360d12876d"
}
}
}