forked from revue-org/revue-sample-thing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.99 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"type": "module",
"name": "thing",
"version": "0.0.0",
"private": true,
"description": "Revue thing example",
"main": "dist/src/index.js",
"scripts": {
"serve": "NODE_ENV=production node .",
"dev": "npm run build && NODE_ENV=develop node .",
"build": "tsc && tsc-alias",
"watch": "tsc -w & tsc-alias -w & nodemon .",
"coverage": "vitest --run --coverage",
"lint:fix": "eslint src/ --ext .js,.cjs,.mjs,.ts,.cts --fix",
"lint": "eslint src/ --ext .js,.cjs,.mjs,.ts,.cts",
"format:fix": "prettier --write src",
"format": "prettier --check src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/revue-org/revue-sample-thing.git"
},
"keywords": [],
"author": "Mattia Matteini, Alberto Paganelli",
"license": "MIT",
"bugs": {
"url": "https://github.com/revue-org/revue-sample-thing/issues"
},
"homepage": "https://github.com/revue-org/revue-sample-thing#readme",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@node-wot/binding-http": "^0.8.14",
"@node-wot/core": "^0.8.14",
"axios": "^1.6.7",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fluent-ffmpeg": "^2.1.2",
"jsonwebtoken": "^9.0.2",
"kafkajs": "^2.2.4",
"node-dht-sensor": "^0.4.3",
"pi-camera": "^1.7.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.17",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.0.0",
"@types/node-dht-sensor": "^0.4.2",
"@types/pi-camera": "^1.5.5",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"eslint": "^8.49.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"semantic-release-preconfigured-conventional-commits": "^1.1.92",
"supertest": "^7.0.0",
"tsc-alias": "^1.8.8",
"typescript": "5.6.2",
"vite": "^5.0.0"
}
}