-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.77 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
{
"name": "node-typescript-serverless-example-service",
"version": "1.0.0",
"description": "Node.js Typescript Serverless Example Service",
"main": "index.ts",
"private": true,
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development nodemon -w src -e ts -x ts-node --files ./src/server/local.ts",
"build": "tsc && trace-pkg -c build.yml && unzip -o -qq dist/app.zip -d dist",
"start": "NODE_ENV=production node ./build/src/server/local.js",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"docker:build": "docker build -t ffleandro/node-typescript-serverless-example-service:latest ."
},
"dependencies": {
"aws-sdk": "^2.1208.0",
"cognito-express": "^3.0.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-domain-middleware": "^0.1.0",
"helmet": "^4.6.0",
"joi": "^17.6.0",
"morgan": "^1.10.0",
"serverless-http": "^3.0.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-domain-middleware": "^0.0.6",
"@types/jest": "^27.0.3",
"@types/joi": "^17.2.3",
"@types/lodash": "^4.14.177",
"@types/morgan": "^1.9.3",
"@types/node": "^14.17.34",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"dotenv": "^16.0.2",
"env-cmd": "^10.1.0",
"eslint": "^8.3.0",
"eslint-plugin-json": "^3.1.0",
"jest": "^27.4.3",
"jest-dynalite": "^3.6.1",
"merge": "^2.1.1",
"nock": "^13.2.9",
"nodemon": "^2.0.15",
"supertest": "^6.1.6",
"trace-pkg": "^0.4.1",
"ts-jest": "^27.0.7",
"ts-node": "^9.1.1",
"typescript": "~4.6.2",
"uuid": "^8.3.2"
}
}