-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1021 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1021 Bytes
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
{
"name": "smart-display-2",
"version": "1.0.0",
"description": "Raspberry Pi Smart Display with Google Photos, Calendar, and Home Assistant",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "node test-server.js",
"build": "webpack --mode production",
"build-dev": "webpack --mode development"
},
"dependencies": {
"@google-cloud/local-auth": "^2.1.0",
"@google/generative-ai": "^0.24.1",
"axios": "^1.6.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"googleapis": "^128.0.0",
"node-cron": "^3.0.3"
},
"devDependencies": {
"css-loader": "^6.8.1",
"html-webpack-plugin": "^5.5.3",
"nodemon": "^3.0.1",
"style-loader": "^3.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"keywords": [
"raspberry-pi",
"smart-display",
"google-photos",
"google-calendar",
"home-assistant"
],
"author": "Smart Display Team",
"license": "MIT"
}