-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.51 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
{
"name": "api",
"description": "API for AngelThump",
"version": "1.0.0",
"homepage": "",
"private": true,
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "TimIsOverpowered",
"email": "admin@angelthump.com"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^16.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"test": "npm run lint && npm run mocha",
"lint": "eslint src/. test/. --config .eslintrc.json --fix",
"dev": "nodemon src/",
"start": "node src/",
"production": "cross-env NODE_ENV=production node src/",
"mocha": "mocha test/ --recursive --exit"
},
"standard": {
"env": [
"mocha"
],
"ignore": []
},
"dependencies": {
"@feathersjs/authentication-client": "^5.0.22",
"@feathersjs/configuration": "^5.0.22",
"@feathersjs/errors": "^5.0.22",
"@feathersjs/express": "^5.0.22",
"@feathersjs/feathers": "^5.0.22",
"@feathersjs/socketio-client": "^5.0.22",
"@feathersjs/transport-commons": "^5.0.22",
"apicache": "^1.6.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"helmet": "^7.1.0",
"ioredis": "^5.3.2",
"rate-limiter-flexible": "^5.0.0",
"serve-favicon": "^2.5.0",
"socket.io-client": "^4.7.4",
"winston": "^3.11.0"
},
"devDependencies": {
"axios": "^1.6.7",
"eslint": "^8.57.0",
"mocha": "^10.3.0",
"nodemon": "^3.1.0"
}
}