-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 857 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 857 Bytes
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
{
"name": "my-webpack-project",
"version": "1.0.0",
"description": "My webpack project",
"main": "index.js",
"scripts": {
"input:build": "npx tailwind build -i ./wwwroot/css/input.css -o ./wwwroot/css/output.css",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch"
},
"author": "",
"license": "ISC",
"dependencies": {
"@microsoft/signalr": "^8.0.7",
"daisyui": "^2.38.0",
"jquery": "^3.7.1",
"xterm": "^5.0.0",
"xterm-addon-fit": "^0.6.0"
},
"devDependencies": {
"@webpack-cli/generators": "^3.0.7",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.18",
"tailwindcss": "^3.2.1",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}