-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.91 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
{
"name": "projectname",
"author": "ORGNAME",
"description": "PROJECTDESCRIPTION",
"version": "1.0.0",
"license": "MIT",
"keywords": [
"PROJECTNAME"
],
"main": "dist/Main.js",
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc && tsc-alias",
"start": "node .",
"start:local": "npm run build && cross-env ENVIRONMENT=local npm run start | pino-pretty -c -t",
"start:dev": "cross-env ENVIRONMENT=development nodemon --watch './src' --exec 'ts-node' -r tsconfig-paths/register ./src/Main.ts | pino-pretty -c -t",
"test": "jest --config jest.config.json",
"test:watch": "jest --config jest.config.json --watch",
"test:coverage": "jest --config jest.config.json --coverage",
"format": "eslint --fix --ext .ts ./src"
},
"homepage": "https://github.com/ORGNAME/PROJECTNAME#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ORGNAME/PROJECTNAME.git",
"directory": "PROJECTNAME"
},
"bugs": {
"url": "https://github.com/ORGNAME/PROJECTNAME/issues",
"email": "[email protected]"
},
"dependencies": {
"pino": "^9.5.0",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@casualbot/jest-sonar-reporter": "^2.4.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^9.15.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.5.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"pino-pretty": "^13.0.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.3"
},
"config": {
"engine-strict": true
}
}