-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.83 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.83 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "onionful-api",
"version": "0.0.1",
"description": "Onionful - serverless CMS for AWS Lambda in NodeJS",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "bnr offline",
"create-domain": "bnr create-domain",
"deploy": "./.bin/deploy.sh",
"sls": "bnr sls"
},
"betterScripts": {
"offline": {
"command": "sls offline start",
"env": {
"ENVIRONMENT": "development",
"IS_OFFLINE": true
}
},
"create-domain": "sls create_domain",
"sls": "sls"
},
"author": "@hszanowski",
"license": "MIT",
"dependencies": {
"ajv": "^6.9.1",
"auth0": "^2.14.0",
"axios": "^0.18.0",
"dynamoose": "^1.6.2",
"http-errors": "^1.7.1",
"joi": "^14.3.1",
"jsonwebtoken": "^8.4.0",
"jwks-rsa": "^1.4.0",
"lodash": "^4.17.11",
"middy": "^0.22.0",
"source-map-support": "^0.5.10",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/preset-env": "^7.3.1",
"aws-sdk": "^2.401.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-source-map-support": "^2.0.1",
"better-npm-run": "^0.1.1",
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.2.2",
"eslint-plugin-prettier": "^3.0.1",
"happypack": "^5.0.1",
"hard-source-webpack-plugin": "^0.13.1",
"js-yaml": "^3.12.1",
"prettier": "^1.16.4",
"serverless": "^1.37.1",
"serverless-aws-alias": "^1.7.1",
"serverless-domain-manager": "^2.6.13",
"serverless-offline": "^4.4.2",
"serverless-webpack": "^5.2.0",
"webpack": "^4.29.3",
"webpack-node-externals": "^1.7.2"
},
"peerDependencies": {
"aws-sdk": "2.x"
}
}