-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.01 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.01 KB
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
{
"name": "dynamoose-example",
"version": "1.0.0",
"description": "Dynamoose Example",
"main": "index.js",
"scripts": {
"deploy": "export $(grep -v '^#' .env.$npm_config_stage | xargs -d '\n') && node scripts/deploy.js --application=$npm_config_application --stage=$npm_config_stage",
"offline": "export $(grep -v '^#' .env.$npm_config_stage | xargs -d '\n') && cd apps/$npm_config_application && rm -rf .build && serverless offline",
"test": "export $(grep -v '^#' .env.$npm_config_stage | xargs -d '\n') && mocha -r ts-node/register **/__tests__/**/* --timeout 30000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moveworkforward/dynamoose-example"
},
"author": "Mihael Mladenov",
"license": "ISC",
"bugs": {
"url": "https://github.com/moveworkforward/dynamoose-example/issues"
},
"dependencies": {
"@automapper/classes": "^8.7.7",
"@automapper/core": "^8.7.7",
"@automapper/types": "^6.3.1",
"@types/aws-lambda": "^8.10.114",
"@types/lodash": "^4.14.192",
"@types/node": "^18.15.11",
"@types/uuid": "^9.0.1",
"@types/validator": "^13.7.14",
"dynamoose": "^3.1.0",
"lodash": "^4.17.21",
"source-map-support": "^0.5.21",
"uuid": "^9.0.0",
"validator": "^13.9.0"
},
"devDependencies": {
"@tsconfig/node-lts-strictest": "^18.12.1",
"@tsconfig/node18": "^1.0.1",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/shelljs": "^0.8.11",
"chai": "^4.3.7",
"chai-better-shallow-deep-equal": "^1.1.1",
"commander": "^10.0.0",
"mocha": "^10.2.0",
"rimraf": "^4.4.1",
"serverless": "^3.29.0",
"serverless-dynamodb-stream-arn-plugin": "^0.0.7",
"serverless-offline": "^12.0.4",
"serverless-plugin-typescript": "^2.1.4",
"shelljs": "^0.8.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}