-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 1.27 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": "server",
"version": "1.0.0",
"main": "handler.js",
"license": "MIT",
"dependencies": {
"@types/lodash": "^4.14.165",
"jsonwebtoken": "^8.2.0",
"middy": "^0.13.1",
"mongoose": "^5.0.9",
"mongoose-unique-validator": "^2.0.0",
"slug": "^0.9.1"
},
"scripts": {
"tslint": "tslint -c tslint.json -p tsconfig.json",
"build-ts": "tsc",
"test": "newman run ./tests/api-tests.postman.json -e ./tests/env-api-tests.postman.json",
"start": "./node_modules/.bin/serverless offline -s local --skipCacheInvalidation",
"deploy": "./node_modules/.bin/serverless deploy --stage prod",
"debug": "export SLS_DEBUG=* && node --inspect ./node_modules/.bin/serverless offline -s dev --skipCacheInvalidation"
},
"devDependencies": {
"@types/aws-lambda": "^0.0.33",
"@types/crypto-js": "^3.1.38",
"@types/jsonwebtoken": "^7.2.5",
"@types/mongodb": "^3.0.7",
"@types/mongoose": "^5.0.7",
"@types/mongoose-unique-validator": "^1.0.1",
"@types/node": "^9.4.7",
"newman": "^3.9.3",
"serverless": "^1.26.1",
"serverless-offline": "^3.18.0",
"serverless-webpack": "^5.1.1",
"ts-loader": "^2.3.7",
"ts-node": "^9.0.0",
"tslint": "^5.9.1",
"typescript": "^4.0.5",
"webpack": "^3.8.0"
}
}