-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "netlify-express",
"version": "0.0.1",
"description": "Example of how to deploy a Express.js Netlify app.",
"main": "functions/server.js",
"scripts": {
"build": "netlify-lambda build express",
"start": "concurrently 'yarn:start:app' 'yarn:start:func'",
"start:app": "nodemon server-local.js",
"start:func": "netlify-lambda serve express"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neverendingqs/netlify-express.git"
},
"keywords": [
"netlify",
"express.js"
],
"author": "neverendingqs",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/neverendingqs/netlify-express/issues"
},
"homepage": "https://github.com/neverendingqs/netlify-express#readme",
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"body-parser": "^1.19.0",
"concurrently": "^5.2.0",
"cors": "^2.8.5",
"dotenv": "^5.0.1",
"express": "^4.17.1",
"mongoose": "^5.9.16",
"netlify-lambda": "^1.6.3",
"nodemon": "^2.0.4",
"serverless-http": "^2.5.0"
}
}