forked from laardee/serverless-authentication-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.39 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
{
"name": "serverless-authentication-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for Serverless Authentication",
"author": "Eetu Tuomala <[email protected]>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/laardee/serverless-authentication-boilerplate.git"
},
"keywords": [
"serverless",
"aws",
"oauth",
"lambda"
],
"devDependencies": {
"async": "^2.0.0-rc.3",
"aws-sdk": "^2.2.48",
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
"dotenv": "^2.0.0",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"js-yaml": "^3.6.1",
"log4js": "^1.1.1",
"mocha": "^2.4.5",
"nock": "^7.7.2",
"serverless-authentication": "^0.4.4"
},
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"test": "./run-tests.sh",
"install-dependencies": "npm run install-authentication && npm run install-test-token",
"install-authentication": "cd authentication && npm install",
"install-test-token": "cd test-token && npm install",
"deploy-authentication": "cd authentication && serverless deploy",
"deploy-test-token": "cd test-token && serverless deploy",
"deploy": "npm run deploy-authentication && npm run deploy-test-token"
}
}