-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.41 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "lambda-project-template",
"version": "1.0.0",
"description": "Project template for AWS Lambda functions using Babel and Webpack",
"main": "src/index.js",
"repository": "http://github.com/mgoggin/lambda-project-template.git",
"author": "Mike Goggin <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"clean": "rimraf dist",
"lint": "eslint .",
"test": "npm run lint && jest --passWithNoTests",
"build": "npm run clean && webpack --config webpack.config.js",
"build:debug": "npm run clean && webpack --mode development --config webpack.config.js",
"deploy": "cross-env AWS_SDK_LOAD_CONFIG=1 node bin/deploy"
},
"devDependencies": {
"archiver": "^2.1.1",
"aws-sdk": "^2.236.1",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"builtins": "^2.0.0",
"chalk": "^2.4.1",
"cross-env": "^5.1.5",
"date-fns": "^1.29.0",
"eslint": "^4.19.1",
"eslint-import-resolver-webpack": "^0.9.0",
"eslint-plugin-import": "^2.11.0",
"jest": "^22.4.3",
"loglevel": "^1.6.1",
"loglevel-plugin-prefix": "^0.8.3",
"rimraf": "^2.6.2",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.8.1",
"webpack-cli": "^2.1.3"
},
"engines": {
"node": ">=8.10"
}
}