-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
107 lines (107 loc) · 3.5 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "beeprint_mks_wifi",
"version": "1.6.1",
"description": "BeePrint MKS WiFi web interface",
"main": "''",
"scripts": {
"clean": "shx rm -rf build",
"webpack": "webpack --config config/webpack.config.production.js",
"sass": "node-sass src/styles/index.scss build/index.css --output-style compressed",
"build": "npm run clean && npm run webpack",
"lint": "eslint src config",
"test": "export NODE_ENV=test && jest",
"start": "serve -s build",
"dev": "npm run clean && webpack-cli serve --mode development --config config/webpack.config.dev.js",
"start-build": "cd build && http-server -a localhost -p 8000 -c-1 -g"
},
"repository": {
"type": "git",
"url": "https://github.com/xreef/beeprint_mks_wifi_mischianti"
},
"author": "Renzo Mischianti",
"license": "CC BY-NC-ND",
"homepage": "https://www.mischianti.org/category/project/web-interface-beeprint-for-mks-wifi/",
"dependencies": {
"@babel/core": "^7.12.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@formatjs/intl-pluralrules": "^4.1.2",
"@formatjs/intl-relativetimeformat": "^9.2.2",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
"autoprefixer": "^10.0.2",
"axios": "^0.21.1",
"babel-loader": "^8.2.0",
"babel-plugin-module-resolver": "^4.0.0",
"connected-react-router": "^6.9.3",
"copy-webpack-plugin": "^6.3.0",
"css-loader": "^5.0.1",
"d3-format": "^3.0.1",
"d3-time-format": "^4.0.0",
"enzyme": "^3.11.0",
"file-loader": "^5.1.0",
"history": "^4.10.1",
"html-webpack-plugin": "^4.5.0",
"intl": "^1.2.5",
"jest": "^24.9.0",
"lodash.throttle": "^4.1.1",
"node-sass": "^6.0.1",
"perfect-scrollbar": "^1.5.2",
"react": "^17.0.2",
"react-ace": "^9.5.0",
"react-dom": "^17.0.2",
"react-grid-layout": "^1.3.4",
"react-intl": "^5.20.9",
"react-perfect-scrollbar": "^1.5.8",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-sizeme": "^3.0.1",
"react-stockcharts": "file:lib/react-stockcharts-0.7.9-SNAPSHOT.7.tgz",
"redux": "^4.1.1",
"redux-logic": "^3.0.3",
"sass-loader": "^11.1.1",
"save-svg-as-png": "^1.4.17",
"serve": "^11.3.2",
"shx": "^0.3.3",
"style-loader": "^2.0.0",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"jest": {
"verbose": true,
"bail": true,
"collectCoverage": true,
"coverageDirectory": "coverage",
"moduleNameMapper": {
"\\.(jpe?g|png|gif|eot|otf|webp|svg|ttf|woff2?|mp[34]|webm|wav|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|s[ac]ss|styl)$": "<rootDir>/__mocks__/styleMock.js"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
]
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.14.5",
"compression-webpack-plugin": "^8.0.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-standard": "^4.1.0",
"http-server": "^14.1.1",
"regenerator-runtime": "^0.13.9",
"replace-in-file-webpack-plugin": "^1.0.6",
"terser-webpack-plugin": "^5.1.4",
"webpack-merge": "^5.8.0",
"webpack-visualizer-plugin2": "^1.0.0"
}
}