-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.48 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.48 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"author": "Gil Mendes <gil00mendes@gmail.com>",
"name": "stellar-fw",
"description": "A modular Web framework based on actions, to create Web APIs easily",
"version": "1.4.6",
"type": "module",
"main": "dist/index",
"types": "dist/index",
"keywords": [
"api",
"web framework",
"stellar",
"rest",
"http",
"https",
"tcp",
"action",
"task",
"websocket"
],
"scripts": {
"dev": "rm -rf dist && ts-node-dev --transpile-only --no-deps ./src/engine",
"build": "rm -rf lib && ./node_modules/.bin/tsc -p tsconfig.build.json",
"pretest": "pnpm build",
"test": "vitest",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint src"
},
"dependencies": {
"async": "^2.5.0",
"bcrypt": "5.0.0",
"bluebird": "^3.5.0",
"browser_fingerprint": "1.0.4",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"etag": "^1.7.0",
"glob": "^10.3.10",
"i18n": "^0.13.2",
"ioredis": "^5.6.0",
"ioredis-mock": "^8.9.0",
"is-running": "^2.1.0",
"log": "^3.2.0",
"mime": "^2.4.6",
"node-resque": "^9.3.7",
"primus": "8.0.9",
"qs": "^6.5.0",
"ramda": "^0.27.1",
"sails-disk": "1.0.0-12",
"should": "^13.0.0",
"source-map-support": "^0.5.0",
"st-formidable": "^1.0.18",
"uglify-js": "^3.17.4",
"waterline": "0.15.2",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^5.0.0",
"ws": "^4.0.0"
},
"devDependencies": {
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^1.3.1",
"@vitest/ui": "^1.3.1",
"axios": "^1.6.7",
"axios-cookiejar-support": "^5.0.0",
"eslint": "8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.2.5",
"tough-cookie": "^4.1.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/StellarFw/stellar"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/StellarFw/stellar/issues"
},
"homepage": "https://stellar-framework.com",
"engines": {
"node": ">= 18.0.0"
},
"bin": {
"stellar": "./bin/stellar"
},
"exports": {
".": "./src/engine.ts",
"./*": "./src/*"
},
"packageManager": "pnpm@9.10.0+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c"
}