-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
80 lines (80 loc) · 3 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
{
"name": "enter-your-package-name-here",
"description": "{{ inline( swagger.info.description) }}",
"version": "0.0.1",
"private": true,
"author": "<add your company or personal name here>",
"scripts": {
"build": "tsc && tsc-alias",
"cli-script": "VERBOSE=true && node ./build/server.js -r ",
"dev:build": "tsc-watch --preserveWatchOutput --onSuccess 'npx tsc-alias'",
"dev:setup": "git config core.hooksPath githooks && cp -n .env.example .env",
"dev:start": "tsc-watch --preserveWatchOutput --onSuccess 'sh -c \"npx tsc-alias && npm start\"'",
"dev:debug": "tsc-watch --preserveWatchOutput --onSuccess 'sh -c \"npx tsc-alias && node --inspect=127.0.0.1:9229 ./build/server.js\"'",
"jest": "node --random-seed=42 node_modules/.bin/jest",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"lint:fix": "npm run lint -- --fix",
"pm2:start:dev": "pm2 start pm2.dev.config.js",
"pm2:start:prod": "pm2 start pm2.prod.config.js",
"start": "node ./build/server.js",
"test": "npm run build && npm run lint && npm run test:unit",
"test:unit": "ENVIRONMENT=test && npm run jest --silent --runInBand",
"test:unit:single": "npm run jest --clearCache && ENVIRONMENT=test && npm run jest --collect-coverage false --verbose --forceExit --detectOpenHandles"
},
"dependencies": {
"celebrate": "^15.0.3",
"command-line-args": "^5.2.0",
"cors": "^2.8.5",
"custom-error": "^0.2.1",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-auth-middle": "^1.1.2",
"express-form-data": "^2.0.23",
"express-promise-router": "^4.1.1",
"generate-it-logger": "^2.0.0",
"generate-it-mockers": "^1.1.4",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"node-worker-threads-pool": "^1.5.1",
"object-reduce-by-map": "^2.1.0",
"openapi-nodegen-config-helper": "^2.0.1",
"recursive-readdir-sync": "^1.0.6",
"request-ip": "^3.3.0",
"swagger-ui-express": "^4.3.0",
"tslib": "^2.6.3",
"winston": "^3.13.1",
"worker-farm": "^1.7.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/command-line-args": "^5.2.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-form-data": "^2.0.5",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.17.7",
"@types/morgan": "^1.9.9",
"@types/node": "^20.14.14",
"@types/request-ip": "^0.0.41",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"@types/validator": "^13.12.0",
"@types/yamljs": "^0.2.34",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-deprecate": "^0.7.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.4",
"tsc-alias": "^1.8.10",
"tsc-watch": "^6.2.0",
"typescript": "~5.5.4"
}
}