-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.01 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.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
{
"name": "hello_world",
"version": "1.0.0",
"description": "hello world sample for NodeJS",
"main": "app.js",
"author": "SAM CLI",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0"
},
"scripts": {
"clean": "rimraf build",
"build": "npm run clean && webpack",
"test": "jest"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.46",
"@types/config": "0.0.36",
"@types/copy-webpack-plugin": "^5.0.0",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.2",
"@types/webpack": "^4.41.7",
"aws-sdk": "^2.642.0",
"config": "^3.3.0",
"copy-webpack-plugin": "^5.1.1",
"jest": "^25.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.7.0",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"testEnvironment": "node",
"testRegex": "/.*spec\\.ts$",
"transform": {
".ts": "ts-jest"
}
}
}