-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 1.84 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
{
"name": "ESP3D-Configurator",
"version": "1.0.0",
"description": "Web Configurator for ESP3D V3 based FW ",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"front": "webpack serve --config config/webpack.dev.js ",
"server": "nodemon config/server.js",
"dev": "concurrently \"npm run server\" \"npm run front\"",
"build": "webpack --config config/webpack.prod.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"babel-loader": "^8.2.5",
"@babel/register": "^7.15.3",
"babel-preset-preact": "^2.0.0",
"chalk": "^4.1.2",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^10.0.0",
"concurrently": "^7.2.2",
"core-js": "^3.23.3",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"express": "^4.18.1",
"express-fileupload": "^1.4.0",
"express-static-gzip": "^2.1.1",
"gzipper": "^6.0.0",
"html-inline-css-webpack-plugin": "^1.11.1",
"html-inline-script-webpack-plugin": "^3.0.0",
"html-minifier": "^4.0.0",
"html-minimizer-webpack-plugin": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"nodemon": "^3.0.0",
"npm-run-all": "^4.1.5",
"regenerator-runtime": "^0.13.9",
"sass": "^1.42.1",
"sass-loader": "^11.1.1",
"style-loader": "^2.0.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2"
},
"dependencies": {
"preact": "^10.8.0",
"preact-feather": "^4.2.1",
"spectre.css": "luc-github/spectre"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}