-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.54 KB
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
{
"name": "servicename",
"version": "0.1.0",
"private": true,
"description": "Description of the service",
"repository": {
"type": "git",
"url": ""
},
"license": "UNLICENSED",
"author": "",
"email": "",
"audience": "Add one of the values: component-internal|business-unit-internal|company-internal|external-partner|external-public",
"type": "module",
"main": "build/app.js",
"scripts": {
"build": "npx tsc --project tsconfig.build.json",
"dev": "pnpm run build && NODE_ENV=dev pnpm run start",
"watch": "nodemon",
"start": "NODE_ENV=prod node --trace-warnings build/app",
"lint": "eslint source/**/*.ts",
"format": "eslint source/**/*.ts --fix",
"test": "jest -i",
"test-ci": "jest -i -no-cache",
"watch:test": "jest -i --watch"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"eslint": "^9.29.0",
"express": "4.21.1",
"helmet": "7.1.0",
"response-time": "2.3.3",
"soap": "^1.1.12",
"zod": "3.23.8"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@types/express": "4.17.21",
"@types/jest": "29.5.11",
"@types/node": "22.10.5",
"@types/response-time": "2.3.8",
"@types/sax": "^1.2.7",
"@types/supertest": "6.0.2",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.0",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"supertest": "7.0.0",
"ts-jest": "29.2.5",
"typescript": "5.3.3"
}
}