generated from jsynowiec/node-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.31 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
{
"name": "keycloak-signup-backend",
"version": "0.0.0",
"description": "Keycloak self-registration app.",
"engines": {
"node": ">= 18 <19"
},
"devDependencies": {
"@types/jest": "~29.5.6",
"@types/node": "~20.8.9",
"@typescript-eslint/eslint-plugin": "~6.9.0",
"@typescript-eslint/parser": "~6.9.0",
"eslint": "~8.52.0",
"eslint-config-prettier": "~9.0.0",
"eslint-plugin-jest": "~27.6.0",
"jest": "~29.7.0",
"prettier": "~3.0.3",
"rimraf": "~5.0.5",
"ts-jest": "~29.1.1",
"tsutils": "~3.21.0",
"typescript": "~5.2.2"
},
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Elokapina / Extinction Rebellion Finland <info@elokapina.me>",
"license": "Apache-2.0",
"dependencies": {
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"generate-strings": "<2",
"keycloak-admin": "^1.14.17",
"luxon": "^3.4.3",
"nunjucks": "^3.2.4",
"postgres-schema-builder": "^1.3.0",
"tslib": "~2.6.2",
"uuid": "^9.0.1"
},
"volta": {
"node": "18.12.1"
}
}