-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
40 lines (40 loc) · 1.23 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
{
"name": "bcparks-ar-api",
"version": "1.0.0",
"description": "BCParks Attendance and Revenue Backend",
"devDependencies": {
"@digitalspace/dynamodb-migrate": "^1.0.6",
"aws-sdk-mock": "^5.4.0",
"jest": "^29.5.0",
"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": "IS_OFFLINE=1 TABLE_NAME=bcparks-ar-tests CONFIG_TABLE_NAME=bcparks-ar-tests-config 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/"
]
},
"dependencies": {
"axios": "^1.4.0",
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^3.0.1",
"luxon": "^3.2.1",
"node-jose": "^2.2.0",
"svg-captcha": "^1.4.0",
"winston": "^3.8.0",
"write-excel-file": "^1.3.16"
}
}