-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 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
{
"name": "@everywoah/air-quality",
"version": "1.2.0",
"type": "module",
"augmentos": {
"versionDisplay": "Air Quality v1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/paulgailey/air-quality-app"
},
"main": "dist/index.js",
"scripts": {
"dev": "bun --hot src/index.ts",
"start": "bun src/index.ts",
"docker:dev": "docker compose -f docker/docker-compose.dev.yml -p dev up",
"docker:dev:detach": "./scripts/docker-dev.sh -d",
"docker:stop": "docker compose -f docker/docker-compose.dev.yml -p dev down",
"postinstall": "npx npm-force-resolutions"
},
"dependencies": {
"@augmentos/sdk": "1.1.4",
"@types/express": "^5.0.1",
"@types/node": "^22.13.14",
"axios": "^1.6.0",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"jsonwebtoken": "9.0.2",
"npm-force-resolutions": "^0.0.10",
"path": "^0.12.7"
},
"devDependencies": {
"typescript": "^5.0.0"
},
"resolutions": {
"jsonwebtoken": "9.0.2"
},
"overrides": {
"jsonwebtoken": "9.0.2"
}
}