-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
49 lines (49 loc) · 1.41 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
{
"name": "serverless-web-application",
"version": "1.0.0",
"description": "serverless-web-application",
"scripts": {
"build": "webpack --config webpack.ts",
"start": "node dist/app.js",
"package-import": "zip -j dist/import.zip dist/import.js",
"package-authorizer": "zip -j dist/authorizer.zip dist/authorizer.js",
"package-vote": "zip -j dist/vote.zip dist/vote.js"
},
"author": "Yandex Cloud",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.34.0",
"@aws-sdk/client-s3": "^3.35.0",
"@aws-sdk/util-dynamodb": "^3.34.0",
"ci": "^2.1.1",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^2.0.4",
"morgan": "^1.9.1",
"node-fetch": "^2.6.1",
"openapi-backend": "^4.0.0",
"source-map-support": "^0.5.10"
},
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/express": "^4.17.12",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.5",
"@types/morgan": "^1.7.35",
"@types/node": "^16.11.0",
"@types/node-fetch": "^2.5.12",
"axios": "^0.21.1",
"concurrently": "^6.2.2",
"fork-ts-checker-webpack-plugin": "^6.3.4",
"jest": "^27.2.3",
"nodemon": "^2.0.13",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.6",
"ts-node": "^10.3.0",
"tslint": "^5.12.1",
"typescript": "^4.4.4",
"wait-on": "^3.2.0",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0"
}
}