-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 2.13 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
{
"name": "chapar",
"version": "1.1.3",
"description": "Reliable Express/Node.js RPC over RabbitMQ",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && babel src --ignore node_modules --out-dir dist --copy-files --delete-dir-on-start --config-file=./babel.config.js",
"prepublish": "npm run build",
"run-mock": "node test/mock/bin/www",
"dev-run-example-rpc-express": "nodemon --exec npx babel-node ./src/example/server",
"dev-run-example-rpc-client": "nodemon --exec npx babel-node ./src/example/client",
"test": "./node_modules/.bin/mocha --require @babel/register 'test/test_*.js'"
},
"dependencies": {
"ajv": "^8.11.0",
"amqplib": "^0.10.3",
"cookie-parser": "~1.4.6",
"debug": "~4.3.4",
"express": "~4.18.2",
"http-errors": "^2.0.0",
"lodash": "^4.17.21",
"morgan": "~1.10.0",
"qs": "^6.11.0",
"querystring": "^0.2.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/node": "^7.20.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-arrow-functions": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-stage-2": "^7.8.3",
"@babel/register": "^7.18.9",
"@babel/runtime": "^7.20.1",
"amqp-stats": "0.0.14",
"chai": "^4.3.7",
"chai-subset": "^1.6.0",
"colors": "^1.4.0",
"core-js": "^3.26.0",
"eslint": "^8.27.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"mocha": "^10.1.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"regenerator-runtime": "^0.13.10"
},
"author": {
"name": "Ahmad Jahanbin @ Lamasoo"
},
"license": "MIT",
"homepage": "https://github.com/AhmadMja/Chapar#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/AhmadMja/Chapar.git"
}
}