-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.31 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.31 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
74
75
76
77
78
79
80
81
82
83
{
"name": "RxStackSkeletonApplication",
"version": "0.8.0",
"description": "RxStack Skeleton - a fully functional application that you can use as the skeleton for your new applications.",
"private": true,
"author": "Nikolay Georgiev <symfonist@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/rxstack/skeleton.git"
},
"engines": {
"node": ">=20"
},
"keywords": [
"rxstack"
],
"main": "dist/index",
"typings": "dist/index",
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "npm run clean && tsc -p .",
"clean": "rm -rf dist",
"eslint": "eslint src/**/*.ts",
"jest": "jest --collect-coverage --reporter=lcov",
"test": "npm run eslint && npm run jest",
"dev": "npm run compile && nodemon",
"cli": "node ./dist/cli.js",
"cli-dev": "ts-node ./src/cli.ts",
"watch": "tsc -w -p ."
},
"dependencies": {
"@rxstack/async-event-dispatcher": "^0.8",
"@rxstack/configuration": "^0.8",
"@rxstack/core": "^0.8",
"@rxstack/exceptions": "^0.8",
"@rxstack/express-server": "^0.8",
"@rxstack/service-registry": "^0.8",
"@rxstack/socketio-server": "^0.8",
"@rxstack/worker-threads-pool": "^0.8",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"express": "^5.0.1",
"injection-js": "^2.4.0",
"reflect-metadata": "^0.2.2",
"socket.io": "^4.8.1",
"winston": "^3.15.0"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@jest/globals": "^29.7.0",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.12",
"@types/node": "^22.7.6",
"@types/serve-static": "^1.15.7",
"@types/sinon": "^17.0.3",
"@types/validator": "^13.12.2",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"cross-env": "^7.0.3",
"eslint": "^9.12.0",
"jest": "^29.7.0",
"node-fetch": "^2.7.0",
"nodemon": "^3.1.7",
"sinon": "^19.0.2",
"socket.io-client": "^4.8.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.5.4",
"typescript-eslint": "^8.10.0"
},
"bugs": {
"url": "https://github.com/rxstack/skeleton/issues"
},
"homepage": "https://github.com/rxstack/skeleton",
"nodemonConfig": {
"ignore": [
"test/*"
],
"delay": "200"
}
}