forked from victronenergy/venus-html5-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.85 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
{
"name": "victron-venus-metrics",
"version": "1.0.0",
"description": "Metric framework for Victron VenusOS",
"main": "index.js",
"scripts": {
"dev": "npx babel-node scripts/dev-server.js",
"dev:mocked": "npx babel-node scripts/dev-server.js --mocked",
"clean": "rm -rf dist",
"compile": "npm run clean && npx webpack --mode production",
"test": "jest",
"test:ui": "npm run clean && npx webpack --mode production && npx babel-node test/run-cypress.js",
"cypress": "npx cypress open"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-transform-react-jsx": "^6.24.1",
"css-loader": "^1.0.0",
"cypress": "^3.1.2",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"file-loader": "^2.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"husky": "^1.1.4",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"live-server": "^1.2.0",
"mosca": "^2.8.3",
"mqtt": "^2.18.3",
"nodemon": "^1.18.6",
"node-sass": "^4.9.4",
"prettier": "^1.14.3",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"regenerator-runtime": "^0.12.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.22.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "node hooks/commit-msg.js $HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}