-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 3.53 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "protofun-service",
"version": "0.1.3",
"private": true,
"license": "UNLICENSED",
"author": {
"name": "Daniel Constantin",
"email": "[email protected]"
},
"main": "lib/client",
"engines": {
"node": ">= 18"
},
"feathers": {
"language": "ts",
"packager": "yarn",
"database": "postgresql",
"framework": "koa",
"transports": [
"rest",
"websockets"
],
"schema": "json"
},
"directories": {
"lib": "src",
"test": "test"
},
"files": [
"lib/client.js",
"lib/**/*.d.ts",
"lib/**/*.shared.js"
],
"scripts": {
"dev": "nodemon -x ts-node src/index.ts",
"dev:script:report": "nodemon -x ts-node src/scripts/create-weekly-report.ts",
"dev:script:tg": "nodemon -x ts-node src/scripts/send-tg-message.ts",
"dev:script:tweet": "nodemon -x ts-node src/scripts/send-tweet.ts",
"compile": "shx rm -rf lib/ && tsc",
"check-types": "tsc --noEmit",
"prestart": "npm run compile && npm run migrate",
"start": "node lib/",
"start:prod": "cross-env NODE_ENV=production npm run start",
"postversion": "npm run bundle:client",
"build": "docker build -t protofun-service .",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"mocha": "cross-env NODE_ENV=test mocha test/ --require ts-node/register --recursive --extension .ts --exit",
"test": "cross-env NODE_ENV=test npm run migrate && npm run mocha",
"bundle:client": "npm run compile && npm pack --pack-destination ./public",
"migrate": "knex migrate:latest",
"migrate:make": "knex migrate:make",
"setup_db": "docker-compose up -d"
},
"dependencies": {
"@feathersjs/adapter-commons": "^5.0.8",
"@feathersjs/authentication": "^5.0.8",
"@feathersjs/authentication-client": "^5.0.8",
"@feathersjs/authentication-local": "^5.0.8",
"@feathersjs/authentication-oauth": "^5.0.8",
"@feathersjs/configuration": "^5.0.8",
"@feathersjs/errors": "^5.0.8",
"@feathersjs/feathers": "^5.0.8",
"@feathersjs/knex": "^5.0.8",
"@feathersjs/koa": "^5.0.8",
"@feathersjs/schema": "^5.0.8",
"@feathersjs/socketio": "^5.0.8",
"@feathersjs/transport-commons": "^5.0.8",
"@google-cloud/logging-winston": "^6.0.0",
"chalk": "4",
"decimal.js": "^10.4.3",
"dotenv": "^16.3.1",
"feathers-hooks-common": "^8.1.1",
"feathers-permissions": "^2.1.4",
"knex": "^2.5.1",
"node-schedule": "^2.1.1",
"pg": "^8.11.1",
"protofun": "^0.3.2",
"puppeteer": "^21.3.5",
"telegraf": "^4.14.0",
"twitter-api-v2": "^1.15.1",
"urql": "^4.0.5",
"web-push": "^3.6.6",
"winston": "^3.10.0"
},
"devDependencies": {
"@feathersjs/cli": "5.0.8",
"@feathersjs/rest-client": "^5.0.8",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.2",
"@types/node-schedule": "^2.1.1",
"@types/web-push": "^3.6.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"axios": "^1.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unused-imports": "^3.0.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}