mirror of
https://github.com/IT4Change/IT4C.dev.git
synced 2026-03-01 12:44:23 +00:00
* rename test:lint:eslint to lint and update eslint-config-it4c package * simplify config and make it ts * jest update & ts * suppress server logging output in tests * remove test node_env as it is default for jest * use eslint-config-it4c * packages = module * fix tailwind as ts * eslitn autofix * more fixes * tsconfig & some eslint rules * fixes * more fixes * more exceptions * do not allow warnings * fix config * ignore vuepress generated configs * ts include fix
42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"name": "it4c.dev-backend",
|
|
"version": "1.0.0",
|
|
"description": "IT4C.dev backend",
|
|
"license": "Apache-2.0",
|
|
"author": "Ulf Gebhardt",
|
|
"type": "module",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/IT4Change/IT4C.dev.git"
|
|
},
|
|
"scripts": {
|
|
"start": "node ./build/src/index.js",
|
|
"build": "tsc",
|
|
"dev": "tsx watch ./src/index.ts",
|
|
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
|
|
"lint": "eslint --max-warnings 0 .",
|
|
"update": "npx npm-check-updates"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "^30.2.0",
|
|
"eslint": "^9.39.2",
|
|
"eslint-config-it4c": "^0.11.2",
|
|
"jest": "^30.2.0",
|
|
"ts-jest": "^29.4.6",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/type-provider-typebox": "^6.1.0",
|
|
"@types/nodemailer": "^7.0.9",
|
|
"fastify": "^5.7.4",
|
|
"nodemailer": "^8.0.1",
|
|
"ts-dotenv": "^0.9.1"
|
|
},
|
|
"imports": {
|
|
"#src/*": "./src/*",
|
|
"#root/*": "./*"
|
|
}
|
|
}
|