-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.66 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
69
70
71
{
"name": "pjsekai-api",
"description": "",
"version": "0.1.2",
"homepage": "",
"private": true,
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "Erik Chan",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^12.0.0",
"yarn": ">= 1.16.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/authentication": "^4.5.10",
"@feathersjs/authentication-local": "^4.5.10",
"@feathersjs/authentication-oauth": "^4.5.10",
"@feathersjs/configuration": "^4.5.10",
"@feathersjs/errors": "^4.5.10",
"@feathersjs/express": "^4.5.10",
"@feathersjs/feathers": "^4.5.10",
"@feathersjs/transport-commons": "^4.5.10",
"chance": "^1.1.7",
"compression": "^1.7.4",
"cors": "^2.8.5",
"feathers-authentication-hooks": "^1.0.2",
"feathers-hooks-common": "^5.0.4",
"feathers-mongodb": "^6.2.0",
"feathers-sequelize": "^6.2.0",
"helmet": "^4.2.0",
"mongodb": "^3.6.3",
"mongodb-core": "^3.2.7",
"mysql2": "^2.2.5",
"pg": "^8.4.2",
"redis": "^3.0.2",
"sequelize": "^6.3.5",
"serve-favicon": "^2.5.0",
"winston": "^3.3.3"
},
"devDependencies": {
"axios": "^0.21.0",
"eslint": "^7.13.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.6"
}
}