-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1 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
{
"name": "auth-now",
"version": "0.0.1",
"description": "This is the main repo for @tomfa and @rix1's serverless adventure",
"main": "api/hello.js",
"engines": {
"node": ">=8.x"
},
"repository": "https://github.com/rix1/auth-now",
"author": "Rikard Eide <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"eslint": "eslint . --cache",
"test": "npm run eslint && jest",
"tdd": "jest --watch"
},
"husky": {
"hooks": {
"pre-push": "yarn test"
}
},
"dependencies": {
"jsonwebtoken": "^8.5.1",
"juice": "^5.2.0",
"mailgun-js": "^0.22.0"
},
"devDependencies": {
"@otovo/eslint-config-otovo": "^3.0.0",
"babel-eslint": "^10.0.2",
"eslint": "^6.2.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.4",
"jest": "^24.9.0",
"prettier": "^1.18.2"
}
}