-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 975 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 975 Bytes
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
{
"name": "lambda-rollup",
"version": "1.0.0",
"description": "Just small starter pack for lambda express with rollup",
"scripts": {
"build": "NODE_ENV=development rollup -c rollup.config.js",
"start": "NODE_ENV=development rollup -c rollup.config.js && node dist/handler.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeroneemou/lambda-rollup.git"
},
"author": "jeroneemou@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/jeroneemou/lambda-rollup/issues"
},
"homepage": "https://github.com/jeroneemou/lambda-rollup#readme",
"devDependencies": {
"@types/aws-serverless-express": "^3.3.1",
"@types/express": "^4.17.0",
"@types/node": "^12.6.8",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"tslib": "^1.10.0",
"typescript": "^3.5.3"
},
"dependencies": {
"aws-serverless-express": "^3.3.6",
"express": "^4.17.1"
}
}