-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.36 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
{
"name": "invites-api",
"version": "1.0.0",
"private": true,
"description": "Invites RESTful API.",
"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/invites-api.git"
},
"author": "Daniël Illouz <[email protected]> (https://www.danillouz.dev/)",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/upstandfm/invites-api/issues"
},
"homepage": "https://github.com/upstandfm/invites-api#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.10.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.64.1",
"serverless-domain-manager": "^3.3.1"
},
"dependencies": {
"@hapi/joi": "^17.1.0",
"@mooncake-dev/check-symbols": "^1.0.3",
"@mooncake-dev/lambda-body-parser": "^1.0.4",
"@mooncake-dev/lambda-res-handler": "^1.1.3",
"aws-sdk": "^2.626.0",
"shortid": "^2.2.15"
}
}