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
|
{
"name": "which-api",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "ts-node index.ts",
"lint": "eslint . --ext ts --max-warnings 0",
"test": "npm run lint"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@feathersjs/authentication": "^4.5.3",
"@feathersjs/authentication-local": "^4.5.4",
"@feathersjs/configuration": "^4.5.3",
"@feathersjs/errors": "^4.5.3",
"@feathersjs/express": "^4.5.4",
"@feathersjs/feathers": "^4.5.3",
"@feathersjs/socketio": "^4.5.4",
"@feathersjs/transport-commons": "^4.5.3",
"@types/aws-sdk": "^2.6.1",
"@types/axios": "^0.14.0",
"@types/bluebird": "^3.5.32",
"@types/cors": "^2.8.6",
"@types/debug": "^4.1.5",
"@types/lodash": "^4.14.155",
"@types/mongoose": "^5.7.23",
"@types/node": "^14.0.27",
"@types/uuid": "^8.0.1",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"aws-sdk": "^2.6.1",
"axios": "^0.19.2",
"bluebird": "^3.7.2",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"feathers-hooks-common": "^5.0.3",
"feathers-mongoose": "^8.3.0",
"lodash": "^4.17.15",
"mongoose": "^5.9.18",
"ts-node": "^8.10.2",
"typescript": "^3.9.5",
"uuid": "^8.3.0",
"which-types": "^1.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eug-vs/which-api.git"
},
"bugs": {
"url": "https://github.com/eug-vs/which-api/issues"
},
"homepage": "https://github.com/eug-vs/which-api#readme",
"description": "",
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-plugin-import": "^2.21.2"
}
}
|