forked from kwik-e-mart/technology-templates-nodejs-femsa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 815 Bytes
/
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
{
"name": "technology-templates-nodejs-serverless",
"version": "1.0.0",
"description": "NodeJS Serverless Template Example",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nullplatform/technology-templates-nodejs-serverless.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nullplatform/technology-templates-nodejs-serverless/issues"
},
"homepage": "https://github.com/nullplatform/technology-templates-nodejs-serverless#readme",
"dependencies": {
"@fastify/aws-lambda": "3.3.0",
"fastify": "4.23.2"
},
"devDependencies": {
"eslint": "^9.16.0",
"globals": "^15.13.0",
"@jest/globals": "^29.7.0",
"jest": "^29.7.0"
}
}