-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 860 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "paperlesspaper-openintegrations",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start": "node server/index.js",
"screenshots": "node scripts/render-screenshots.mjs",
"copy:assets": "node scripts/copy-openintegration-assets.mjs",
"postinstall": "npm run copy:assets",
"docker:build": "docker build -t paperlesspaper-openintegrations:latest .",
"docker:run": "docker run --rm -p 3000:3000 paperlesspaper-openintegrations:latest",
"check:of-the-day": "node scripts/check-of-the-day-layouts.mjs",
"check:dashboards": "node scripts/check-dashboard-integrations.mjs"
},
"dependencies": {
"@fontsource/open-sans": "5.2.7",
"@paperlesspaper/openintegration": "file:vendor/openintegration",
"express": "^4.19.2",
"fast-xml-parser": "^5.11.1",
"suncalc": "^2.0.2"
}
}