-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "my-webpack-project",
"version": "1.0.0",
"description": "My webpack project",
"main": "index.js",
"author": "explorerNW",
"license": "MIT",
"private": true,
"dependencies": {
"@types/amqplib": "^0.10.1",
"@types/lodash": "^4.14.191",
"amqplib": "^0.10.3",
"assert": "^2.0.0",
"axios": "^1.3.4",
"casual": "^1.6.2",
"jose": "^4.12.0",
"kafkajs": "^2.2.3",
"lodash": "^4.17.21",
"node-fetch": "^3.3.0",
"rxjs": "^7.8.0",
"stream": "^0.0.2",
"tls": "^0.0.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@loadable/babel-plugin": "^5.13.2",
"@webpack-cli/generators": "^3.0.1",
"babel-loader": "^9.1.2",
"eslint": "^8.32.0",
"eslint-webpack-plugin": "^3.2.0",
"prettier": "^2.8.3",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"scripts": {
"build": "rm -rf ./dist && (webpack --mode=production --node-env=production)",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"start:server": "node ./dist/main.js"
}
}