forked from aenniw/ESP-WebUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.91 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.91 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "esp-webui",
"version": "0.3.0",
"description": "Preact frontend for ESP8266/ESP32",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --inline --hot --progress",
"build": "mkdirp build && cross-env NODE_ENV=production webpack --progress",
"lint": "eslint src"
},
"keywords": [
"preact",
"webpack"
],
"license": "MIT",
"author": "aenniw@gmail.com",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime-corejs2": "^7.0.0",
"autoprefixer": "^9.8.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.0",
"chai": "^4.0.2",
"compression-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^6.0.3",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"css-loader": "^4.0.0",
"eslint": "7.5.0",
"eslint-config-preact": "1.1.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"json-loader": "^0.5.4",
"less": "^3.12.2",
"less-loader": "^6.2.0",
"mkdirp": "^1.0.4",
"ncp": "^2.0.0",
"offline-plugin": "^5.0.0",
"postcss-loader": "^3.0.0",
"preact-jsx-chai": "^2.2.1",
"raw-loader": "^4.0.1",
"regenerator-runtime": "^0.13.7",
"replace-bundle-webpack-plugin": "^1.0.0",
"script-ext-html-webpack-plugin": "^2.1.3",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"source-map-loader": "^1.0.1",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"preact": "^10.4.6",
"preact-i18n": "^2.2.0-preactx",
"preact-render-to-string": "^5.1.10",
"preact-router": "^3.2.1",
"promise-polyfill": "^8.1.3",
"proptypes": "^1.0.0"
},
"browserslist": [
"last 2 version"
],
"eslintConfig": {
"extends": "preact"
}
}