-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.3 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "serverless-biztechapp",
"version": "1.0.0",
"type": "module",
"dependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.620.1",
"@aws-sdk/client-dynamodb": "^3.620.1",
"@aws-sdk/client-lambda": "^3.620.1",
"@aws-sdk/client-ses": "^3.620.1",
"@aws-sdk/client-sns": "^3.637.0",
"@aws-sdk/lib-dynamodb": "^3.620.1",
"concurrently": "^6.2.0",
"copy-dynamodb-table": "^2.2.1",
"csv-parser": "^3.0.0",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"express-http-proxy": "^1.6.2",
"fs": "0.0.1-security",
"http-proxy-middleware": "^2.0.0",
"human-id": "^4.1.1",
"ics": "^2.40.0",
"path": "^0.12.7",
"serverless": "^3.39.0",
"serverless-dynamodb": "^0.2.54",
"yaml": "^1.10.2"
},
"scripts": {
"preitest": "chmod +x ./scripts/run_itests.sh",
"itest": "./scripts/run_itests.sh",
"preutest": "chmod +x ./scripts/run_utests.sh",
"utest": "./scripts/run_utests.sh",
"test": "npm run utest && npm run itest",
"lint": "eslint . --fix",
"pre-commit-msg": "echo 'Fixing lint problems'...",
"pretty": "prettier --write \"./**/*.{js,jsx,ts,tsx,json}\"",
"fix-sls-offline": "find services/* -maxdepth 0 -type d -exec sh -c 'cd \"{}\" && node ../../scripts/fix-sls-offline.js' \\;",
"install": "find services/* -maxdepth 0 -type d -exec sh -c 'cd \"{}\" && npm i --save-dev' \\;",
"sls-offline-i": "find services/* -maxdepth 0 -type d -exec sh -c 'cd \"{}\" && serverless plugin install -n serverless-offline' \\;",
"dev": "node ./index.js",
"init:db": "cd scripts && node ./initlocal.js",
"populate-quests": "cd scripts && node ./generateQuestsForEventRegistrations.js"
},
"devDependencies": {
"aws-sdk-mock": "^5.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^7.7.0",
"mocha": "^8.1.3",
"pre-commit": "^1.2.2",
"serverless-bundle": "^6.1.0",
"serverless-domain-manager": "^5.1.0",
"serverless-mocha-plugin": "^1.12.0",
"serverless-prune-plugin": "^2.0.2"
},
"pre-commit": [
"pre-commit-msg",
"lint"
],
"babel": {
"presets": [
"es2015",
"stage-2"
],
"plugins": [
"transform-runtime"
]
}
}