-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.32 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.32 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
43
44
45
{
"name": "serverless-starter-service-node",
"version": "1.2.0",
"description": "A Node.js feature + microservice on the Serverless Framework with async/await and unit test support.",
"main": "handler.js",
"scripts": {
"lint": "eslint .",
"test": "jest"
},
"author": "",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/lopezdp/ServerlessStarterService.git"
},
"devDependencies": {
"aws-sdk": "^2.350.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-source-map-support": "^2.0.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^5.15.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"serverless-offline": "^5.5.0",
"serverless-plugin-warmup": "^4.4.3-rc.1",
"serverless-webpack": "^5.1.0",
"webpack": "^4.16.2",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"source-map-support": "^0.5.12",
"stripe": "^6.17.0",
"uuid": "^3.3.2"
}
}