-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.15 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
{
"name": "expresso-portal",
"version": "1.0.0",
"description": "@expresso auth platform",
"scripts": {
"test": "mocha -b -r ts-node/register test/**/*.ts",
"build": "tsc",
"clean": "rm -rf dist tsconfig.tsbuildinfo",
"build:clean": "npm run build && npm run build",
"lint": "eslint src/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"dev": "tsnd src/index.ts",
"node": "node"
},
"author": "Roz <roz@rjmunhoz.me>",
"license": "GPL-3.0",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"chai": "^4.3.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^7.0.2",
"mocha": "^9.1.0",
"semantic-release": "^17.4.7",
"sinon": "^11.1.2",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@expresso/app": "^1.2.4",
"@expresso/router": "^2.0.3",
"@expresso/server": "^1.1.4",
"@irontitan/mongodb-data-layer": "^1.0.0",
"argon2": "^0.28.2",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.1.1",
"zod": "^3.8.2"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "docs",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/git"
]
}
}