-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 758 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 758 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
{
"name": "graphql-lambda-setup",
"version": "0.1.0",
"description": "a poc for graphql api on netlify",
"main": "index.js",
"scripts": {
"build": "cd functions && npm install && cd .. && webpack --config webpack.config.js",
"dev": "webpack --config webpack.config.js && netlify dev"
},
"repository": {
"type": "git",
"url": "https://github.com/Rmnlly/graphql-lambda-setup.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"babel-loader": "^8.0.6",
"webpack": "^4.41.5",
"webpack-node-externals": "^1.7.2"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"devDependencies": {
"webpack-cli": "^3.3.10"
}
}