-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.71 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
{
"name": "ecg",
"version": "0.0.1",
"description": "ECG",
"main": "app/src/index.js",
"scripts": {
"start": "cd ./app && NODE_ENV=development sudo npx webpack-dev-server",
"build:app": "npm run-script clean && cd ./app && BABEL_ENV=production NODE_ENV=production npx webpack",
"clean": "rm -rf ./app/build/*",
"copy": "rm -rf ./physical/data/* && cp -a ./app/build/. ./physical/data/",
"build:physical": "npm run-script copy && cd physical && pio run -e wemos -t upload && pio run -e wemos -t uploadfs"
},
"author": "Reuben",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@vx/axis": "0.0.189",
"@vx/curve": "0.0.189",
"@vx/grid": "0.0.189",
"@vx/group": "0.0.189",
"@vx/responsive": "0.0.189",
"@vx/scale": "0.0.189",
"@vx/shape": "0.0.189",
"@vx/text": "0.0.189",
"d3-array": "^2.2.0",
"date-fns": "^2.0.0-beta.2",
"file-saver": "^2.0.2",
"fili": "^2.0.3",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.6.0",
"babel-loader": "^8.0.6",
"babel-preset-minify": "^0.5.0",
"compression-webpack-plugin": "^3.0.0",
"critters-webpack-plugin": "^2.3.0",
"css-loader": "^3.0.0",
"cssnano": "^4.1.10",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.1.2",
"style-loader": "^0.23.1",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.2"
}
}