-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.25 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
{
"name": "netlify-lambda-functions",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently 'npm run start:client' 'npm run start:server'",
"start:client": "webpack-dev-server --mode development --hot --config webpack.client.js",
"start:server": "netlify-lambda serve src/lambda -c webpack.server.js",
"build": "npm run build:client && npm run build:server",
"build:client": "webpack --mode production --config webpack.client.js",
"build:server": "netlify-lambda build src/lambda",
"build:lambda": "netlify-lambda build src/lambda"
},
"keywords": [
"javascript",
"netlify",
"lambda"
],
"author": "Cristian Moreno <khriztianmoreno@gmail.com>",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"netlify-lambda": "^2.0.0",
"node-emoji": "^1.10.0",
"normalize.css": "^8.0.1"
},
"devDependencies": {
"babel-loader": "8.1.0",
"concurrently": "5.3.0",
"dotenv": "8.2.0",
"extract-loader": "5.1.0",
"file-loader": "6.2.0",
"html-loader": "1.3.2",
"html-webpack-plugin": "4.5.0",
"markdown-magic": "1.0.0",
"node-fetch": "2.6.1",
"webpack": "5.3.2",
"webpack-dev-server": "3.11.0",
"webpack-cli": "4.1.0"
}
}