-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.86 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
{
"name": "friday-satellite",
"version": "1.0.0",
"per-env": {
"production": {
"env": "prod"
},
"development": {
"env": "dev"
}
},
"scripts": {
"start": "per-env",
"start:production": "npm run -s serve",
"start:development": "npm run -s dev",
"serve": "concurrently -k -n \"Friday-Satellite\" -c \"blue\" \"cross-env NODE_ENV=production SERVER_PORT=1443 ts-node ./src/server.ts\"",
"dev": "concurrently -k -n \"TypeScript,Node\" -c \"blue,green\" \"tsc --watch\" \"cross-env NODE_ENV=development nodemon ./src/server.ts\"",
"test": "concurrently -k -n \"Mocha\" -c \"red\" \"cross-env NODE_ENV=test MQTT_PORT=1884 mocha --recursive -r ts-node/register ./test/setup.ts ./test/**/*.test.ts -exit\""
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/friday-ai/friday-satellite.git"
},
"dependencies": {
"@fnando/keyring": "^0.4.0",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.1.3",
"@types/node": "^14.11.2",
"@types/node-schedule": "^1.3.0",
"@types/uuid": "^8.3.1",
"@types/ws": "^7.2.6",
"axios": "^0.21.0",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"glob": "^7.1.6",
"local-devices": "^3.1.0",
"mqtt": "^4.2.1",
"mqtt-packet": "^7.1.1",
"node-schedule": "^1.3.2",
"nodemon": "^2.0.7",
"per-env": "^1.0.2",
"reflect-metadata": "^0.1.13",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.10.0",
"eslint-config-airbnb-typescript": "^10.0.0",
"eslint-plugin-import": "^2.22.0",
"mocha": "^8.2.1",
"mocha-junit-reporter": "^2.0.0"
}
}