-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.91 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
67
68
69
70
71
72
73
74
{
"name": "webcam-weather-wizard",
"version": "1.0.0",
"description": "Webcam image analysis for instant weather data extraction and terrain analysis.",
"main": "app.js",
"config": {
"commitizen": {
"path": "cz-customizable"
}
},
"jest": {
"roots": [
"<rootDir>/test/"
]
},
"lint-staged": {
"./**/*.{js,ts,json,css,scss,md}": [
"prettier --write"
],
"src/**/*.+(js,ts,json,css,scss,md)": [
"prettier --write",
"eslint --fix",
"npm run test"
]
},
"scripts": {
"start": "NODE_ENV=production node src/app.js",
"dev": "NODE_ENV=development nodemon --trace-warnings --watch src src/app.js",
"dev:inspect": "NODE_ENV=development nodemon --inspect --watch src src/app.js",
"test": "jest",
"test:watch": "npm run test -- --watch",
"lint-staged": "lint-staged",
"commit": "./node_modules/cz-customizable/standalone.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/niklasfrick/webcam-weather-wizard.git"
},
"keywords": [
"webcam",
"weather",
"terrain",
"data"
],
"author": "Niklas Frick",
"license": "MIT",
"bugs": {
"url": "https://github.com/niklasfrick/webcam-weather-wizard/issues"
},
"homepage": "https://github.com/niklasfrick/webcam-weather-wizard#readme",
"devDependencies": {
"commitlint": "^17.7.1",
"commitlint-config-gitmoji": "^2.3.1",
"cz-customizable": "^7.0.0",
"eslint": "^8.49.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.3"
},
"dependencies": {
"@tensorflow-models/coco-ssd": "^2.2.3",
"@tensorflow-models/mobilenet": "^2.1.1",
"@tensorflow/tfjs-node": "^4.11.0",
"ajv": "^8.12.0",
"axios": "^1.5.0",
"canvas": "^2.11.2",
"dotenv": "^16.3.1",
"mongodb": "^6.0.0",
"node-cron": "^3.0.2",
"tesseract.js": "^4.1.2"
}
}