This repository has been archived by the owner on Aug 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.5 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "display-backend",
"version": "1.0.0-beta.2",
"description": "Data source and configuration store for displays",
"homepage": "https://alarmdisplay.org",
"private": true,
"main": "src",
"keywords": [],
"author": {
"name": "Andreas Brain",
"email": "dev@abrain.de"
},
"license": "AGPL-3.0-only",
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/alarmdisplay/display-backend.git"
},
"bugs": {
"url": "https://github.com/alarmdisplay/display-backend/issues"
},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^14.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"test": "npm run compile && npm run jest",
"lint": "eslint src/. test/. --config .eslintrc.json --ext .ts --fix",
"dev": "ts-node-dev --no-notify --rs src/",
"start": "npm run compile && node lib/",
"jest": "jest --forceExit",
"compile": "shx rm -rf lib/ && tsc"
},
"standard": {
"env": [
"jest"
],
"ignore": []
},
"types": "lib/",
"dependencies": {
"@feathersjs/authentication": "^4.5.8",
"@feathersjs/authentication-local": "^4.5.8",
"@feathersjs/authentication-oauth": "^4.5.8",
"@feathersjs/configuration": "^4.5.8",
"@feathersjs/errors": "^4.5.8",
"@feathersjs/express": "^4.5.8",
"@feathersjs/feathers": "^4.5.8",
"@feathersjs/socketio": "^4.5.8",
"@feathersjs/transport-commons": "^4.5.8",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"feathers-memory": "^4.1.0",
"feathers-sequelize": "^6.2.0",
"feathers-shallow-populate": "^2.0.4",
"helmet": "^3.23.3",
"log4js": "^6.3.0",
"mysql2": "^2.1.0",
"sequelize": "^6.3.4",
"serve-favicon": "^2.5.0",
"socket.io-client": "^2.3.0",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "^3.5.32",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.7",
"@types/helmet": "0.0.47",
"@types/jest": "^26.0.10",
"@types/jsonwebtoken": "^8.5.0",
"@types/serve-favicon": "^2.5.0",
"@types/socket.io-client": "^1.4.33",
"@types/uuid": "^8.3.0",
"@types/validator": "^10.11.3",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"axios": "^0.19.2",
"eslint": "^7.7.0",
"jest": "^26.4.2",
"shx": "^0.3.2",
"ts-jest": "^26.2.0",
"ts-node-dev": "^1.0.0-pre.60",
"typescript": "^3.9.7"
}
}