-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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
{
"name": "account",
"version": "1.0.0",
"private": true,
"description": "Account service.",
"scripts": {
"test": "jest",
"tdd": "npm run test -- --watch",
"lint": "eslint 'src/**/*.js'",
"lint:format": "npm run lint -- --fix",
"sls:debug": "serverless print"
},
"repository": {
"type": "git",
"url": "git+https://github.com/upstandfm/account.git"
},
"author": "Daniël Illouz <[email protected]> (https://www.danillouz.dev/)",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/upstandfm/account/issues"
},
"homepage": "https://github.com/upstandfm/account#readme",
"lint-staged": {
"src/**/*.{js,json,md}": "npm run lint:format"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "^25.1.0",
"jest-junit": "^10.0.0",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"serverless": "^1.65.0"
},
"dependencies": {
"@hapi/joi": "^17.1.0",
"auth0": "^2.23.0",
"aws-sdk": "^2.631.0",
"generate-password": "^1.5.1"
}
}