-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.34 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
{
"name": "fake-api",
"description": "Fake api for El-Parah Admin Panel",
"version": "0.0.0",
"homepage": "",
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "Salifu Mutaru",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^13.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"test": "npm run eslint && npm run mocha",
"eslint": "eslint src/. test/. --config .eslintrc.json",
"dev": "nodemon src/",
"start": "node src/",
"mocha": "mocha test/ --recursive --exit"
},
"dependencies": {
"@feathersjs/authentication": "^4.5.1",
"@feathersjs/authentication-local": "^4.5.1",
"@feathersjs/authentication-oauth": "^4.5.1",
"@feathersjs/configuration": "^4.5.1",
"@feathersjs/errors": "^4.5.1",
"@feathersjs/express": "^4.5.1",
"@feathersjs/feathers": "^4.5.1",
"@feathersjs/transport-commons": "^4.5.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"feathers-knex": "^7.1.0",
"helmet": "^3.21.2",
"knex": "^0.20.8",
"pg": "^7.18.1",
"serve-favicon": "^2.5.0",
"winston": "^3.2.1"
},
"devDependencies": {
"axios": "^0.21.1",
"eslint": "^6.8.0",
"mocha": "^6.2.2",
"nodemon": "^2.0.2"
}
}