-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.55 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "loan-feathers-backend",
"description": "",
"version": "0.0.0",
"homepage": "",
"private": true,
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "thmsn",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^16.0.0",
"yarn": ">= 0.18.0"
},
"scripts": {
"test": "yarn run lint && yarn run compile && yarn run jest",
"lint": "eslint src/. test/. --config .eslintrc.json --ext .ts --fix",
"dev": "ts-node-dev --no-notify src/",
"start": "yarn run compile && node lib/",
"jest": "jest --forceExit",
"compile": "shx rm -rf lib/ && tsc",
"import-users": "ts-node ./src/cli/import-users.ts",
"import-users-rankings": "ts-node ./src/cli/import-users-rankings.ts",
"import-rooms": "ts-node ./src/cli/import-rooms.ts",
"import-all": "yarn import-users && yarn import-rooms && yarn import-users-rankings"
},
"standard": {
"env": [
"jest"
],
"ignore": []
},
"types": "lib/",
"dependencies": {
"@feathersjs/authentication": "^4.5.11",
"@feathersjs/authentication-local": "^4.5.11",
"@feathersjs/authentication-oauth": "^4.5.11",
"@feathersjs/configuration": "^4.5.11",
"@feathersjs/errors": "^4.5.11",
"@feathersjs/express": "^4.5.11",
"@feathersjs/feathers": "^4.5.11",
"@feathersjs/rest-client": "^4.5.11",
"@feathersjs/socketio": "^4.5.11",
"@feathersjs/socketio-client": "^4.5.11",
"@feathersjs/transport-commons": "^4.5.11",
"compression": "^1.7.4",
"cors": "^2.8.5",
"feathers-sequelize": "^6.2.0",
"helmet": "^4.3.1",
"screeps-api": "^2.0.0-beta3",
"sequelize": "^6.3.5",
"serve-favicon": "^2.5.0",
"socket.io-client": "^4.1.3",
"sqlite3": "^5.0.0",
"winston": "^3.0.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/compression": "^1.7.1",
"@types/cors": "^2.8.12",
"@types/jest": "^26.0.24",
"@types/jsonwebtoken": "^8.5.4",
"@types/serve-favicon": "^2.5.3",
"@types/socket.io-parser": "^3.0.0",
"@types/validator": "^10.0.0",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"axios": "^0.21.1",
"eslint": "^7.17.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"shx": "^0.3.3",
"ts-jest": "^27.0.4",
"ts-node-dev": "^1.1.8",
"typescript": "^4.1.3"
}
}