forked from victronenergy/venus-html5-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.39 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
{
"name": "victron-venus-metrics",
"version": "1.0.0",
"description": "Metric framework for Victron VenusOS",
"main": "index.js",
"scripts": {
"dev": "node live-server",
"dev-compile": "npx webpack -w",
"dev-compile:mocked": "npx webpack -w --mode=development",
"clean": "rm -rf dist",
"compile": "npm run clean && npx webpack",
"test": "jest --config jestconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\" \"test/**/*.ts\" \"test/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-typescript": "^7.1.0",
"@types/jest": "^23.3.5",
"@types/mqtt": "^2.5.0",
"@types/node": "^10.11.7",
"babel-loader": "^8.0.4",
"babel-plugin-transform-react-jsx": "^6.24.1",
"copy-webpack-plugin": "^4.5.3",
"css-loader": "^1.0.0",
"file-loader": "^2.0.0",
"jest": "^23.6.0",
"live-server": "^1.2.0",
"mqtt": "^2.18.3",
"node-sass": "^4.9.4",
"preact": "^8.3.1",
"prettier": "^1.14.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.1.3",
"webpack": "^4.22.0",
"webpack-cli": "^3.1.2"
}
}