-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.56 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.56 KB
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
{
"name": "riff-team-api",
"version": "0.1.0-dev.0",
"private": true,
"description": "Provides a REST (http) and websocket interface for Riff teams",
"author": "Mike Lippert <mike@rifflearning.com>",
"contributors": [],
"license": "MIT",
"readme": "README.md",
"repository": "https://github.com/mlippert/riff-team-api.git",
"homepage": "https://github.com/mlippert/riff-team-api#readme",
"bugs": "https://github.com/mlippert/riff-team-api/issues",
"main": "dist/server.js",
"scripts": {
"start": "node dist/server.js",
"build": "tsc",
"lint": "tslint --project ."
},
"engines": {
"node": ">=8.4.0"
},
"dependencies": {
"@feathersjs/express": "^1.2.3",
"@feathersjs/feathers": "^3.1.7",
"bunyan": "^1.8.12",
"compression": "^1.7.2",
"config": "^1.30.0",
"cors": "^2.8.4",
"feathers-mongoose": "^6.1.2",
"helmet": "^3.12.1",
"mongoose": "^5.2.1",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@types/bunyan": "^1.8.4",
"@types/compression": "^0.0.36",
"@types/config": "^0.0.34",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.0",
"@types/feathersjs__errors": "^3.2.1",
"@types/feathersjs__express": "^1.1.4",
"@types/feathersjs__feathers": "^3.0.4",
"@types/feathersjs__socket-commons": "^3.1.2",
"@types/helmet": "0.0.38",
"@types/mongodb": "^3.1.1",
"@types/mongoose": "^5.2.0",
"@types/node": "^10.5.2",
"@types/serve-favicon": "^2.2.30",
"tslint": "^5.9.1",
"tslint-eslint-rules": "^5.3.1",
"typescript": "^2.9.2"
}
}