forked from bcgov/parks-reso-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.53 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
{
"name": "parks-reso-api",
"version": "0.0.1",
"author": "Team Osprey",
"description": "parks-reso-api",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.574.0",
"aws-crt": "^1.21.2",
"aws-sdk": "^2.1624.0",
"axios": "^1.1.3",
"bufferutil": "^4.0.8",
"csvjson": "^5.1.0",
"csvtojson": "^2.0.10",
"date-fns": "^2.28.0",
"fs": "^0.0.1-security",
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^3.0.0",
"keycloak-admin": "^1.14.22",
"luxon": "^3.2.1",
"node-jose": "^2.2.0",
"qrcode": "^1.5.1",
"utf-8-validate": "^6.0.4",
"uuid": "^9.0.0",
"winston": "^3.7.2"
},
"devDependencies": {
"@digitalspace/dynamodb-migrate": "^1.0.6",
"aws-sdk-mock": "^5.4.0",
"cross-env": "^7.0.3",
"jest": "^29.3.1",
"mockdate": "^3.0.5",
"read-excel-file": "^5.3.4",
"serverless": "^3.18.1",
"serverless-dotenv-plugin": "^6.0.0",
"serverless-offline": "^12.0.4",
"serverless-plugin-include-dependencies": "^5.0.0"
},
"scripts": {
"start": "sls offline start",
"build": "sls package --package ./artifacts",
"build-ci": "sls package --package ./terraform/src/artifacts",
"test": "cross-env IS_OFFLINE=1 TABLE_NAME=parksreso-tests jest --coverage",
"migration": "node ./node_modules/@digitalspace/dynamodb-migrate/migrate.js"
},
"jest": {
"verbose": true,
"globalSetup": "./__tests__/global/setup.js",
"globalTeardown": "./__tests__/global/teardown.js",
"modulePathIgnorePatterns": [
"./__tests__/global/"
]
}
}