-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 3.31 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
{
"name": "mmm-lky-tic",
"version": "1.1.0",
"description": "MagicMirror² module to display info about home power supply - FRANCE TELEINFO ENEDIS.",
"main": "index.js",
"license": "MIT",
"scripts": {
"install": "npm run build:module-prod",
"postinstall": "rm -rf node_modules/@serialport/bindings-cpp/prebuilds && node_modules/.bin/electron-rebuild -f -w @serialport/bindings-cpp",
"lint": "npm run lint:styles && npm run lint:scripts && npm run lint:source",
"lint:source": "eslint ./src",
"lint:scripts": "eslint ./tools/scripts",
"lint:styles": "stylelint \"src/**/*.scss\"",
"test": "jest",
"test:watch": "jest --watch",
"clean:all": "rm -f MMM-*.js* mmm-*.js* node_helper.js styles.css",
"build:module": "npm run clean:all && npm run build:client && npm run build:helper",
"build:module-prod": "npm run clean:all && npm run build:client-prod && npm run build:helper-prod",
"build:client": "webpack --mode=development --config tools/webpack/webpack.config.module.js",
"build:client-prod": "webpack --mode=production --config tools/webpack/webpack.config.module.js",
"build:helper": "webpack --mode=development --config tools/webpack/webpack.config.helper.js",
"build:helper-prod": "webpack --mode=production --config tools/webpack/webpack.config.helper.js",
"prettier:write": "prettier --write .",
"prettier:check": "prettier --check .",
"tool:teleinfo-reader": "ts-node ./tools/scripts/teleinfo-reader/teleinfo-reader.ts",
"dev": "chokidar \"./src/**/*\" \"./support/**/*\" \"./tools/webpack/*\" -i \"./**/*.spec.*\" -c \"npm run build:client\""
},
"keywords": [
"magic",
"mirror",
"linky",
"enedis",
"tic",
"teleinfo"
],
"devDependencies": {
"@electron/rebuild": "3.3.0",
"@types/app-root-dir": "0.1.1",
"@types/edit-json-file": "1.7.0",
"@types/jest": "29.2.5",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@types/react-test-renderer": "18.0.0",
"@types/serialport": "8.0.2",
"@typescript-eslint/eslint-plugin": "5.47.0",
"@typescript-eslint/parser": "5.47.0",
"app-root-dir": "1.0.2",
"chokidar-cli": "3.0.0",
"css-loader": "6.7.3",
"edit-json-file": "1.7.0",
"eslint": "8.30.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"identity-obj-proxy": "3.0.0",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"mini-css-extract-plugin": "2.7.2",
"node-sass": "8.0.0",
"prettier": "2.8.2",
"react-test-renderer": "18.2.0",
"sass-loader": "13.2.0",
"stylelint": "14.16.1",
"stylelint-config-standard-scss": "6.1.0",
"ts-jest": "29.0.3",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"typescript": "4.9.4",
"webpack": "5.75.0",
"webpack-cli": "5.0.1"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.3.0",
"@fortawesome/free-regular-svg-icons": "6.3.0",
"@fortawesome/free-solid-svg-icons": "6.3.0",
"@fortawesome/react-fontawesome": "0.2.0",
"@opensearch-project/opensearch": "2.4.0",
"@serialport/bindings-cpp": "12.0.1",
"classnames": "2.3.2",
"date-fns": "2.29.3",
"kebab-case": "1.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"serialport": "10.5.0"
}
}