-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.3 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
{
"name": "members-search-api",
"version": "0.0.1",
"description": "API service for Members Search",
"main": "handler.js",
"scripts": {
"start": "sls offline start",
"db:start": "sls dynamodb start --migrate",
"db:install": "sls dynamodb install",
"db:fix": "kill $(lsof -i tcp:8000 | awk 'FNR == 2 {print $2}')",
"build": "NODE_ENV=production sls package --stage=production",
"test:lint": "eslint .",
"test:unit": "NODE_ENV=test ava tests/unit/**/*.test.js",
"test:integration": "NODE_ENV=test ava --serial --fail-fast tests/integration/**/*.test.js",
"test:deploy": "NODE_ENV=production sls --stage=${DEPLOY_STAGE:-development} --no-deploy deploy",
"deploy": "NODE_ENV=production sls --stage=${DEPLOY_STAGE:-development} deploy",
"deploy:production": "NODE_ENV=production sls --stage=production deploy",
"logs": "sls logs --function=${LOGS_FUNCTION:-graphql} --stage=${LOGS_STAGE:-development} --tail",
"copy:graphql": "find src -name \\*.graphql -exec cp {} ./dist/{} \\;"
},
"repository": {
"type": "git",
"url": "git+https://github.com/escabc/members-search-api.git"
},
"author": "Viatcheslav Ivanov <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/escabc/members-search-api/issues"
},
"homepage": "https://github.com/escabc/members-search-api#readme",
"ava": {
"require": "babel-register",
"babel": "inherit"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"camelcase-keys": "4.1.0",
"csv-parse": "1.2.0",
"dotenv": "4.0.0",
"graphql": "0.9.5",
"graphql-tools": "0.11.0",
"lodash": "^4.17.13",
"moment": "^2.18.1",
"node-fetch": "1.6.3",
"serverless-dynamodb-client": "0.0.2",
"xml2js": "0.4.17"
},
"devDependencies": {
"ava": "0.19.1",
"babel-eslint": "7.2.3",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"eslint": "3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.3",
"serverless": "1.12.1",
"serverless-build-plugin": "1.2.0",
"serverless-dynamodb-local": "0.2.21",
"serverless-offline": "3.13.5"
}
}