-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.33 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "pboxapp-backend-nextgen",
"version": "1.1.0",
"description": "",
"author": "James Lin <jameslin@gmx.hk>",
"scripts": {
"deploy:env": "sls deploy --stage $NODE_ENV",
"deploy": "export NODE_ENV=dev && yarn deploy:env",
"deploy:production": "export NODE_ENV=prod && yarn deploy:env",
"deploy:stage": "export NODE_ENV=stage && yarn deploy:env",
"lint": "eslint ./src",
"precommit": "lint-staged",
"serve": "sls offline start --location .webpack/service",
"test": "sls invoke test -r .webpack/service",
"newtest": "sls offline start --location .webpack/service --exec \"./startIntegrationTests.sh\"",
"postinstall": "sls dynamodb install",
"invoke-local-single": "serverless invoke local --function preSignup --path fixtures/event-mocks/event.json"
},
"keywords": [
"pennybox",
"serverless",
"mocha"
],
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-source-map-support": "^1.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-runtime": "^6.26.0",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "^2.7.0",
"mocha": "^4.0.1",
"noop-webpack-plugin": "^1.0.1",
"serverless-domain-manager": "^2.0.1",
"serverless-dynamodb-autoscaling": "^0.6.2",
"serverless-dynamodb-local": "^0.2.25",
"serverless-mocha-plugin": "^1.7.0",
"serverless-offline": "^3.16.0",
"serverless-plugin-split-stacks": "^1.3.1",
"serverless-plugin-tracing": "^2.0.0",
"serverless-webpack": "^4.1.0",
"uglifyjs-webpack-plugin": "^1.1.4",
"webpack": "^3.10.0",
"webpack-node-externals": "^1.6.0",
"yargs": "^11.0.0"
},
"dependencies": {
"aws-sdk": "^2.122.0",
"aws-xray-sdk-core": "^1.1.6",
"boom": "^7.1.1",
"jsonwebtoken": "^8.1.0",
"pluralize": "^7.0.0",
"ramda": "^0.24.1",
"sendinblue-api": "^1.0.8",
"string-template": "^1.0.0",
"swearjar": "^0.2.0"
},
"lint-staged": {
"src/**/*.js": [
"yarn lint -- --fix",
"git add"
]
}
}