-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.74 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.74 KB
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
{
"name": "@kasparsd/sensor-pilot",
"version": "0.1.0",
"description": "Monitor and interact with Bluetooth Low Energy (BLE) sensors using the Web Bluetooth API supported by Chrome on desktop and Android",
"scripts": {
"lint": "eslint .",
"start": "webpack-dev-server",
"build": "webpack --mode=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kasparsd/sensor-pilot.git"
},
"keywords": [
"bluetooth",
"web",
"bluetooth",
"aranet",
"ble",
"sensor"
],
"author": "Kaspars Dambis <hi@kaspars.net> (https://kaspars.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kasparsd/sensor-pilot/issues"
},
"homepage": "https://github.com/kasparsd/sensor-pilot#readme",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-standard": "^4.0.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.0",
"sass-loader": "^8.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"workbox-webpack-plugin": "^4.3.1"
},
"dependencies": {
"@babel/polyfill": "^7.7.0",
"bootstrap": "^4.4.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"redux": "^4.0.5"
}
}