This repository has been archived by the owner on Jul 1, 2022. It is now read-only.
forked from osrts/osrts-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.67 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
{
"name": "open-source-race-timing-system-backend",
"description": "",
"version": "1.0.0",
"people": [
{
"name": "Guillaume Deconinck"
},
{
"name": "Wojciech Grynczel"
}
],
"keywords": [
"feathers"
],
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "npm run jshint && npm run mocha",
"jshint": "jshint src/. test/. --config",
"mocha": "mocha test/"
},
"dependencies": {
"@feathersjs/authentication": "^2.1.1",
"@feathersjs/authentication-jwt": "^2.0.0",
"@feathersjs/authentication-local": "^1.1.0",
"@feathersjs/configuration": "^1.0.2",
"@feathersjs/errors": "^3.2.2",
"@feathersjs/express": "^1.2.0",
"@feathersjs/feathers": "^3.1.2",
"@feathersjs/socketio": "^3.2.0",
"async": "^2.5.0",
"body-parser": "^1.17.2",
"compression": "^1.7.0",
"cors": "^2.8.4",
"ejs": "^2.5.7",
"express-brute": "^1.0.1",
"express-brute-mongoose": "0.0.9",
"fast-csv": "^2.4.0",
"feathers-hooks-common": "^3.6.1",
"feathers-mongoose": "^5.1.1",
"feathers-permissions": "^0.1.1",
"jsonwebtoken": "^7.4.2",
"jws": "^3.1.4",
"memory-cache": "^0.2.0",
"moment": "^2.18.1",
"mongoose": "^4.11.5",
"phantom": "^4.0.5",
"q": "^1.5.0",
"winston": "^2.4.0",
"xlsx": "^0.12.6"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"chai": "^4.1.1",
"chai-http": "^3.0.0",
"eslint": "^4.17.0",
"jshint": "^2.9.5",
"mocha": "^3.5.0",
"nodemon": "^1.17.3",
"request": "^2.85.0",
"request-promise": "^4.2.2",
"socket.io-client": "^2.0.3"
}
}