-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.12 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
{
"name": "ether",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "tsc && rm -rf dist/public && cp -Rf src/public dist/public && webpack && node dist/index.js",
"pi-start": "tsc && rm -rf dist/public && cp -Rf src/public dist/public && webpack && sudo node dist/index.js",
"build": "tsc && rm -rf dist/public && cp -Rf src/public dist/public && webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Francesco Compagnoni",
"license": "ISC",
"devDependencies": {
"@types/node": "^14.14.0",
"css-loader": "^5.0.0",
"sass": "^1.27.0",
"sass-loader": "^10.0.3",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.6",
"typescript": "^4.0.3",
"vue": "^2.6.12",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.12",
"vuex": "^3.5.1",
"webpack": "^5.1.3",
"webpack-cli": "^4.1.0"
},
"dependencies": {
"@types/websocket": "^1.0.1",
"chalk": "^4.1.0",
"fastify": "^3.7.0",
"fastify-static": "^3.3.0",
"hap-nodejs": "^0.9.4",
"pigpio": "^3.2.4",
"websocket": "^1.0.32"
}
}