This repository has been archived by the owner on Apr 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 1.86 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
74
75
76
{
"name": "@particular./serverless-oauth",
"version": "0.0.0-semantic-release",
"author": "Adam Grohs <info@uniquelyparticular.com> (https://uniquelyparticular.com)",
"owner": "Particular.",
"description": "Please contact Particular. via info@uniquelyparticular.com for any questions",
"keywords": [
"serverless",
"OAuth",
"OAuth2",
"authentication",
"provider",
"shopify",
"public apps",
"ecommerce",
"microservices",
"particular",
"particular."
],
"license": "MIT",
"homepage": "https://github.com/uniquelyparticular/serverless-oauth#readme",
"repository": "github:uniquelyparticular/serverless-oauth",
"main": "src/index.js",
"scripts": {
"dev": "micro-dev",
"start": "micro",
"precommit": "lint-staged",
"clean-install": "yarn install --force",
"test": "jest --passWithNoTests",
"semantic-release": "semantic-release",
"lint": "eslint src"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"@particular./shopify-request": "1.3.3",
"firebase-admin": "8.0.0",
"micro": "9.3.4",
"micro-cors": "0.1.1",
"micro-redirect": "1.0.0",
"microrouter": "3.1.3",
"nonce": "1.0.4",
"querystring": "0.2.0",
"request-promise": "4.2.4"
},
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-jest": "22.6.4",
"husky": "2.4.0",
"jest": "24.8.0",
"lint-staged": "8.2.0",
"micro-dev": "3.0.0",
"prettier": "1.17.1",
"pretty-quick": "1.11.0",
"semantic-release": "15.13.14",
"ts-jest": "24.0.2"
},
"publishConfig": {
"access": "public"
}
}