-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.06 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
{
"name": "bluetooth-heartrate-over-http-client",
"version": "1.0.0",
"description": "Our wedding website :)",
"main": "index.js",
"scripts": {
"build": "webpack",
"start": "concurrently \"cd server && npm run start\" \"webpack serve\"",
"start:client": "webpack serve",
"start:server": "cd server && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zfox23/bluetooth-heartrate-over-http.git"
},
"private": true,
"author": "Zach Fox",
"license": "MIT",
"bugs": {
"url": "https://github.com/zfox23/bluetooth-heartrate-over-http/issues"
},
"homepage": "https://github.com/zfox23/bluetooth-heartrate-over-http#readme",
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"html-webpack-plugin": "^4.5.0",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"concurrently": "^5.3.0",
"websocket": "^1.0.33"
}
}