-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.78 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.78 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "ms-socket-node",
"version": "1.0.0",
"description": "This service only distribute data to the socket nodes, not the end clients",
"main": "index.js",
"scripts": {
"build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"dev:build-watch": "tsc && tsc -w & tsc-alias -w",
"dev:setup": "git config core.hooksPath githooks && cp -n .env.example .env",
"dev:start-watch": "nodemon ./build/server.js",
"generate:server": "generate-it ../ms_rabbitmq_d/build/rabbitmq_asyncapi_1.0.1.yml -y -t https://github.com/acrontum/generate-it-asyncapi-socketio-server-node.git",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"npm-update-git-deps": "npm-update-git-deps",
"pm2:start:dev": "pm2 start pm2.dev.config.js",
"pm2:start:prod": "pm2 start pm2.prod.config.js",
"quilk": "npm run test && quilk",
"quilk:cheat": "npm run build && quilk",
"release": "npm run build && npm run test && quilk -d production",
"start": "node ./build/server.js",
"test": "npm run build && npm run lint && echo 'to run tests add this to the npm test script: npm run test:unit'",
"test:unit": "ENVIRONMENT=test && jest --silent --runInBand",
"test:unit:single": "ENVIRONMENT=test && jest --collect-coverage false --verbose --forceExit --detectOpenHandles"
},
"private": true,
"author": "John Carmichael",
"dependencies": {
"@typegoose/typegoose": "^10.0.0",
"command-line-args": "^5.1.1",
"common-utils": "gitlab:liffery/utils/common-utils",
"dotenv": "^8.2.0",
"generate-it-mockers": "^1.0.6",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "~6.8.0",
"newrelic": "^9.7.4",
"object-reduce-by-map": "^2.0.2",
"proc-env-helper": "^1.0.3",
"q-wrapper": "^1.0.3",
"request-promise": "^4.2.6",
"socket.io": "^4.0.2",
"socket.io-client": "^4.0.2",
"url-join": "^4.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/amqplib": "^0.10.1",
"@types/command-line-args": "^5.0.0",
"@types/cors": "^2.8.9",
"@types/fs-extra": "^9.0.6",
"@types/jest": "^26.0.24",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^18.11.17",
"@types/request-promise": "^4.1.47",
"@types/socket.io-client": "^1.4.36",
"@types/supertest": "^2.0.10",
"@types/url-join": "^4.0.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"boats": "^2.4.0",
"eslint": "^8.30.0",
"eslint-plugin-deprecate": "^0.7.0",
"generate-it": "^5.36.0",
"npm-update-git-deps": "^1.4.0",
"quilk": "^2.9.0",
"supertest": "^6.1.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"tsc-alias": "^1.8.2",
"typescript": "~4.9.4"
}
}