-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 817 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 817 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
{
"name": "github-actions-aws",
"version": "1.0.0",
"description": "poc for github actions to aws",
"main": "index.js",
"repository": "https://github.com/jayknyn/github-actions-aws.git",
"author": "Jay Kannaiyan <jay.kannaiyan@hotschedules.com>",
"license": "MIT",
"scripts": {
"start": "nodemon ./server.js",
"dev build": "webpack --watch -d",
"install-npm-lambda": "cd lambda && npm install",
"build": "webpack"
},
"dependencies": {
"express": "^4.16.3",
"nodemon": "^1.18.10",
"path": "^0.12.7",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5"
}
}