-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.17 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
75
76
77
78
{
"name": "aqm-api",
"version": "1.0.0",
"description": "REST API for Air quality monitor (Airduino project).",
"main": "src/index.ts",
"homepage": "https://github.com/tihomirmagdic/aqm-api",
"repository": {
"type": "git",
"url": "https://github.com/tihomirmagdic/aqm-api.git"
},
"bugs": {
"url": "https://github.com/tihomirmagdic/aqm-api/issues",
"email": "[email protected]"
},
"keywords": [
"air quality",
"arduino",
"pg-promise",
"pg-promise demo"
],
"author": {
"name": "Tihomir Magdic",
"email": "[email protected]"
},
"license": "MIT",
"xengines": {
"node": ">=8.0.0"
},
"engines": {
"node": "16.18.1"
},
"scripts": {
"clean": "rimraf dist/*",
"copy:assets": "cp -r src/db/sql/ dist/db/",
"watch:assets": "onchange \"./src/db/sql/**/*\" -- cp -r src/db/sql/ dist/db/",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc",
"build": "ls -s",
"build0": "npm-run-all clean lint tsc copy:assets",
"dev:start": "npm-run-all tsc start",
"dev0": "nodemon --watch src -e ts,ejs --exec npm run dev:start",
"dev": "set NODE_ENV=development& concurrently --kill-others \"tsc -w\" \"nodemon dist/index.js\"",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@types/cookie-session": "^2.0.41",
"@types/hapi__joi": "^16.0.12",
"@types/pg": "^7.14.11",
"bluebird": "3.7.2",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "4.17.1",
"helmet": "^4.6.0",
"latest": "^0.2.0",
"npm-run-all": "^4.1.5",
"onchange": "^6.1.0",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"pg": "^8.9.0",
"pg-monitor": "^1.5.0",
"pg-promise": "^10.15.4",
"tslint": "^6.1.3"
},
"devDependencies": {
"@types/bluebird": "3.5.29",
"@types/cors": "^2.8.8",
"@types/express": "4.17.2",
"@types/node": "^13.9.5",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "3.7.5"
}
}