-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.57 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "servers-lol",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"babel": "babel src --out-dir dist",
"build": "npm run babel",
"deploy": "npm run build && npm run validate && npm run package && npm run launch",
"eslint": "eslint src",
"package": "sam package --template-file template.yml --s3-bucket servers-lol --output-template-file packaged.yml",
"launch": "sam deploy --template-file ./packaged.yml --stack-name servers-lol --capabilities CAPABILITY_IAM",
"api": "npm run build && sam local start-api --port=4000",
"test": "npm run eslint",
"execute": "babel-node src/index.js",
"validate": "node dist/validate",
"watch": "TEST=true nodemon --exec npm run execute"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"aws-sam-local": "^0.2.2",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.10.0",
"eslint-plugin-jest": "^21.2.0",
"eslint-plugin-prettier": "^2.3.1",
"jest": "^21.2.1",
"nodemon": "^1.12.1",
"pre-commit": "^1.2.2",
"prettier": "^1.7.4",
"yamljs": "^0.3.0"
},
"dependencies": {
"aws-sdk": "^2.142.0",
"lodash": "^4.17.4",
"moment": "^2.19.1",
"omit-deep": "^0.3.0",
"p-settle": "^2.0.0",
"superagent": "^3.8.0"
},
"pre-commit": [
"eslint"
]
}