-
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.13 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.13 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": "temperature",
"version": "1.0.0",
"description": "Collect temperature data from sensors",
"main": "dist/server.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc",
"start": "npm run build && node dist/server.js",
"lint": "eslint ./lib --ext .js,.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mohanjith/temperature.git"
},
"author": "Mohanjith Sudirikku Hannadige",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/mohanjith/temperature/issues"
},
"homepage": "https://github.com/mohanjith/temperature#readme",
"dependencies": {
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-openapi-validator": "^4.13.6",
"fs": "^0.0.1-security",
"mongodb": "^4.4.1",
"swagger-ui-express": "^4.3.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/mongodb": "^4.0.7",
"@types/node": "^17.0.21",
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.31",
"eslint": "^8.11.0",
"prettier": "^2.6.0",
"typescript": "^4.6.2"
}
}