-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.5 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.5 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "backend",
"description": "Contacts Manager || React + FeatherJS",
"version": "0.0.0",
"homepage": "",
"private": true,
"main": "src",
"keywords": [
"feathers",
"react",
"api",
"CRUD",
"tests"
],
"author": {
"name": "Nicholas Hoffman",
"email": "hoffman.nick89@gmail.com"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^14.0.0",
"yarn": ">= 0.18.0"
},
"scripts": {
"test": "yarn run lint && yarn run mocha",
"lint": "eslint src/. test/. --config .eslintrc.json --fix",
"dev": "nodemon src/",
"start": "node src/",
"mocha": "mocha test/ --recursive --exit"
},
"standard": {
"env": [
"mocha"
],
"ignore": []
},
"dependencies": {
"@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.8",
"compression": "^1.7.4",
"cors": "^2.8.5",
"feathers-mongoose": "^8.3.1",
"helmet": "^3.23.3",
"mongodb-core": "^3.2.7",
"mongoose": "^5.9.22",
"mongoose-type-email": "^1.0.12",
"serve-favicon": "^2.5.0",
"winston": "^3.0.0"
},
"devDependencies": {
"axios": "^0.20.0",
"eslint": "^7.4.0",
"mocha": "^8.0.1",
"nodemon": "^2.0.4"
}
}