-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
111 lines (111 loc) · 3.95 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
108
109
110
111
{
"name": "homey-heating",
"version": "0.0.0",
"description": "",
"main": "app.js",
"dependencies": {
"@date-io/date-fns": "^1.0.1",
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^4.5.1",
"@sentry/node": "^5.0.0",
"athom-api": "^3.1.8",
"body-scroll-lock": "^2.6.1",
"d3": "^5.9.2",
"date-fns": "^2.0.0-alpha.21",
"graceful-fs": "^4.2.3",
"lodash": "^4.17.11",
"material-ui-pickers": "^2.2.4",
"natives": "^1.1.6",
"notistack": "^0.9.7",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-material-ui": "0.0.1",
"react-router-dom": "^5.0.0",
"react-scroll-locky": "^1.5.0",
"reflect-metadata": "^0.1.13",
"socket.io-client": "^2.2.0",
"strongly-typed-events": "^1.4.10",
"tslint-react": "^4.0.0",
"tsyringe": "^4.0.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@sentry/cli": "^1.40.0",
"@types/chai": "^4.2.6",
"@types/d3": "^5.7.2",
"@types/lodash": "^4.14.123",
"@types/mocha": "^5.2.6",
"@types/mock-require": "^2.0.0",
"@types/node": "^12.12.14",
"@types/react": "^16.9.14",
"@types/react-dom": "^16.8.4",
"@types/react-router": "^5.1.3",
"@types/react-router-dom": "^5.1.3",
"@types/socket.io-client": "^1.4.32",
"@vitalets/google-translate-api": "^3.0.0",
"athom-cli": "^3.0.2",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.5",
"copyfiles": "^2.1.1",
"css-loader": "^3.2.1",
"file-loader": "^5.0.2",
"fstream": "^1.0.12",
"glob": "^7.1.6",
"html-webpack-plugin": "^3.2.0",
"https": "^1.0.0",
"license-checker-webpack-plugin": "^0.1.4",
"mini-css-extract-plugin": "^0.8.0",
"mocha": "^6.1.3",
"mock-require": "^3.0.3",
"npm-check": "^5.9.0",
"rimraf": "^3.0.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.1",
"supports-color": "^7.1.0",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"typescript": "^3.7.2",
"typescript-tslint-plugin": "^0.5.5",
"unzipper": "^0.10.5",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"scripts": {
"homey:run": "npm run build:app:dev && athom -p ../homey-heating-dist app run",
"homey:install": "npm run build:app:prod && npm run build:web:prod && athom -p ../homey-heating-dist app install",
"dist": "npm run build:app:prod && npm run build:web:prod && athom -p ../homey-heating-dist app validate --level publish",
"tag": "npm run lint:app && npm run lint:web && npm run test && git tag",
"test": "rimraf tmp && tsc -p ./src/test/tsconfig.json && mocha",
"release:install": "node scripts/install.js install",
"release:publish": "cp ./env.json ./tmp && node scripts/install.js publish",
"travis:setversion": "node scripts/update-version.js",
"travis:sentry": "sentry-cli",
"lint:app": "tslint --project ./src/tsconfig.json",
"lint:web": "tslint --project ./src/settings/tsconfig.json",
"build:app:releasenotes": "node scripts/release-notes.js",
"build:app:dev": "webpack --mode development --config webpack.app.js",
"build:app:prod": "npm run lint:app && npm run build:app:releasenotes && webpack --mode production --config webpack.app.js",
"build:web:dev": "webpack --mode development --config webpack.react.js",
"build:web:prod": "npm run lint:web && webpack --mode production --config webpack.react.js",
"start:web": "webpack-dev-server --mode development --config webpack.react.js --open",
"start:web:prod": "webpack-dev-server --mode production --config webpack.react.js --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mskg/homey-heating.git"
},
"keywords": [
"homey",
"athom",
"heating"
],
"author": "Markus Kling",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/mskg/homey-heating/issues"
},
"homepage": "https://homey-heating.mskg.app"
}