-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.48 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.48 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
55
56
57
58
{
"name": "nest-serverless-demo",
"version": "1.0.0",
"description": "Nest TypeScript demo with Serverless framework",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"sls:deploy": "sls deploy",
"sls:start": "sls offline start",
"start": "ts-node src/main",
"prestart:prod": "npm run build",
"start:prod": "node dist/main.js"
},
"dependencies": {
"@nestjs/common": "6.2.2",
"@nestjs/core": "6.2.2",
"@nestjs/platform-express": "6.2.2",
"aws-serverless-express": "^3.3.5",
"pg": "^7.11.0",
"reflect-metadata": "0.1.13",
"rimraf": "^2.6.2",
"rxjs": "6.5.2",
"typescript": "3.4.5"
},
"devDependencies": {
"@types/node": "7.10.6",
"@hewmen/serverless-plugin-typescript": "^1.1.17",
"@types/aws-lambda": "^8.10.15",
"@types/express": "^4.16.0",
"@types/jest": "^23.3.1",
"@types/supertest": "^2.0.5",
"jest": "^23.5.0",
"nodemon": "^1.18.3",
"prettier": "^1.14.2",
"serverless-offline": "^3.31.3",
"serverless-plugin-optimize": "^4.0.2-rc.1",
"supertest": "^3.1.0",
"ts-jest": "^23.1.3",
"ts-loader": "^4.4.2",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.5.0",
"tslint": "5.11.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}