-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.3 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.3 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
{
"name": "netlify_lambda",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"dependencies": {
"crypto": "^1.0.1",
"dotenv": "^5.0.1",
"netlify-lambda": "^0.4.0"
},
"devDependencies": {
"clean-webpack-plugin": "^0.1.19",
"concurrently": "^3.5.1",
"copy-webpack-plugin": "^4.5.1",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3",
"webpack-merge": "^4.1.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-lambda": "netlify-lambda build netlify-lambda",
"serve-lambda": "netlify-lambda serve netlify-lambda",
"build-webpack": "webpack --mode production --config webpack.prod.js",
"build": "npm run build-lambda && npm run build-webpack",
"dev": "concurrently \"webpack-dev-server --mode development --config webpack.dev.js\" \"npm run serve-lambda netlify-lambda\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/SquishyCat/netlify_lambda.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SquishyCat/netlify_lambda/issues"
},
"homepage": "https://github.com/SquishyCat/netlify_lambda#readme"
}