-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.65 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
77
78
79
80
81
82
83
84
85
86
87
88
{
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"aws-lambda": "^1.0.5",
"http-status-codes": "^1.4.0",
"mongoose": "^5.9.3",
"ramda": "^0.27.0",
"shortid": "^2.2.15",
"valid-url": "^1.0.9",
"winston": "^3.3.3"
},
"description": "TypeScript Express OpenAPI 2.0 template",
"devDependencies": {
"@commitlint/cli": "^8.3.4",
"@commitlint/config-conventional": "^8.3.4",
"@types/aws-lambda": "^8.10.44",
"@types/jest": "^25.1.3",
"@types/mongoose": "^5.7.3",
"@types/node": "^14.6.0",
"@types/ramda": "^0.26.43",
"@types/shortid": "0.0.29",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"bluebird": "^3.7.2",
"commitizen": "^4.0.3",
"cspell": "^4.0.53",
"eslint": "^6.8.0",
"eslint-plugin-functional": "^3.0.1",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"serverless": "^2.44.0",
"serverless-dotenv-plugin": "^2.3.2",
"serverless-offline": "^5.12.1",
"serverless-webpack": "^5.3.1",
"source-map-support": "^0.5.16",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.5",
"webpack": "^4.41.6",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-node-externals": "^1.7.2"
},
"engines": {
"node": "12",
"npm": ">=6.13.4"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"license": "UNLICENSED",
"main": "lib/index.js",
"name": "@oleg-koval/brevis",
"repository": {
"type": "git",
"url": "[email protected]:oleg-koval/brevis.git"
},
"scripts": {
"build": "run-s clean build:ts",
"build:ts": "tsc --project tsconfig.production.json",
"build:ts:watch": "tsc --project tsconfig.production.json --watch",
"clean": "rm -rf lib",
"cz": "git-cz",
"cz:retry": "git-cz --retry",
"format": "prettier --check \"**/*.{js,json,md,ts,yml,yaml}\"",
"format:fix": "prettier --write \"**/*.{js,json,md,ts,yml,yaml}\"",
"lint": "eslint \"**/*.ts\"",
"lint:fix": "eslint --fix --resolve-plugins-relative-to \"./node_modules/eslint-plugin-functional\" \"**/*.ts\"",
"spellcheck": "cspell '**/*'",
"start": "node lib/index.js",
"test": "jest --detectOpenHandles --runInBand",
"test:ci": "run-s build test:coverage",
"test:coverage": "jest --collect-coverage --runInBand --detectOpenHandles",
"test:watch": "jest --watch --verbose false --runInBand",
"types": "tsc --noEmit"
},
"version": "1.0.0"
}