-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.61 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
{
"name": "federated-monolith-services",
"version": "1.0.0",
"description": "",
"main": "./dist/main.js",
"installConfig": {
"pnp": false
},
"repository": {
"url": "https://github.com/tysonrm/microlib-orderservice"
},
"scripts": {
"build": "npm run clean && webpack --config webpack.config.js",
"start": "node -r dotenv/config dist/main.js",
"start-all": "npm run kafka-stop && npm run kafka-start && node -r dotenv/config dist/main.js",
"dev-start": "nodemon --watch src --exec npm restart",
"restart": "npm run build && npm run start",
"clean": "rm -rf dist",
"transpile": "babel src -d dist",
"test": "mocha",
"test-remote": "mocha",
"demo": "open http://localhost:8060",
"kafka-start": "scripts/start-kafka.sh",
"kafka-stop": "scripts/stop-kafka.sh"
},
"author": "Tyson Midboe",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"kafkajs": "^1.14.0",
"smartystreets-javascript-sdk": "^1.6.0",
"square": "^8.1.0",
"ws": "^7.3.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/polyfill": "^7.11.5",
"@babel/preset-env": "^7.11.0",
"@babel/register": "^7.12.1",
"babel-loader": "^8.1.0",
"babel-register": "^6.26.0",
"bootstrap": "^4.6.0",
"esm": "^3.2.25",
"express-cli": "0.0.1",
"mocha": "^8.2.0",
"nodemon": "^2.0.6",
"nodemon-webpack-plugin": "^4.3.2",
"webpack": "^5.0.0-beta.28",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.2"
}
}