-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.68 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.68 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
{
"name": "serverless-nodejs-starter-template",
"version": "1.0.0",
"description": "A boilerplate for new Serverless Nodejs projects with tests and basic configurations",
"main": "cli.js",
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {
"@serverless/typescript": "^3.30.1",
"generate-password": "^1.7.0",
"joi": "^17.7.0",
"luhn": "^2.4.1",
"redis": "^4.6.6"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@types/aws-lambda": "^8.10.115",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"aws-sdk": "^2.1295.0",
"babel-jest": "^29.5.0",
"eslint": "^8.41.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^24.9.0",
"serverless": "^3.31.0",
"serverless-dotenv-plugin": "^2.1.1",
"serverless-offline": "^5.12.0",
"serverless-plugin-reducer": "^4.0.1",
"serverless-plugin-typescript": "^2.1.4",
"typescript": "^5.0.4"
},
"scripts": {
"build": "tsc --build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/netcode/serverless-nodejs-starter-template.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/netcode/serverless-nodejs-starter-template/issues"
},
"homepage": "https://github.com/netcode/serverless-nodejs-starter-template#readme"
}