-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.02 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
{
"name": "stf-api",
"version": "0.0.1",
"private": true,
"description": "Smart Table Football API",
"keywords": [
"feathers",
"iot",
"Smart Table Football",
"STF",
"table football",
"table soccer",
"foosball"
],
"homepage": "https://stf-api.herokuapp.com/",
"repository": {
"type": "git",
"url": "https://github.com/Jozwiaczek/smart-table-football",
"directory": "packages/api"
},
"author": {
"name": "Jakub Jóźwiak",
"email": "[email protected]"
},
"main": "src",
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"scripts": {
"herokuLogs": "heroku logs --tail -a stf-api",
"lint": "scripty",
"lint:fix": "yarn lint --fix",
"mocha": "mocha test --recursive --exit",
"start": "node src",
"start:db": "docker start mongodb",
"start:dev": "nodemon src",
"stop:db": "docker stop mongodb",
"test": "yarn mocha",
"testNode": "echo NODE_ENV=$NODE_ENV"
},
"dependencies": {
"@feathersjs/authentication": "^2.1.16",
"@feathersjs/authentication-jwt": "^2.0.7",
"@feathersjs/authentication-local": "^1.2.7",
"@feathersjs/configuration": "^2.0.4",
"@feathersjs/errors": "^3.3.4",
"@feathersjs/express": "^1.2.7",
"@feathersjs/feathers": "^3.2.3",
"@feathersjs/socketio": "^3.2.7",
"axios": "^0.19.0",
"compression": "^1.7.3",
"cors": "^2.8.5",
"feathers-authentication-management": "^2.0.1",
"feathers-hooks-common": "^4.19.2",
"feathers-memory": "^4.1.0",
"feathers-mongoose": "^8.3.1",
"googleapis": "^60.0.1",
"helmet": "^3.23.3",
"html-to-text": "^5.1.1",
"lodash": "^4.17.19",
"mjml": "^4.6.3",
"moment": "2.29.0",
"mongodb-core": "^3.2.7",
"mongoose": "^5.9.27",
"nodemailer": "^6.4.11",
"qs": "latest",
"serve-favicon": "^2.5.0",
"validator": "^13.1.1",
"winston": "^3.3.3"
},
"devDependencies": {
"mocha": "^8.1.0",
"nodemon": "^2.0.4"
},
"scripty": {
"path": "../../scripts"
}
}