-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
95 lines (95 loc) · 3.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
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
{
"name": "tipping-community-backend",
"version": "3.1.9",
"description": "",
"main": "bin/www.js",
"prepare": "husky install",
"scripts": {
"start": "node bin/www.js",
"test": "mocha modules/**/tests/*.js --exit",
"benchmark": "node benchmark.js",
"db:create": "npx sequelize-cli --config config/config.js --env development db:migrate",
"db:down": "npx sequelize-cli --config config/config.js --env development db:migrate:undo",
"db:makemigrations": "./node_modules/sequelize-auto-migrations/bin/makemigration.js",
"lint": "eslint .",
"lint-fix": "eslint --ext .js --fix .",
"lint-ci": "eslint --ext .js --max-warnings=0 .",
"swagger:create": "npx swagger-jsdoc@5 -d .swaggerDef.js ./modules/**/*.js && node ./cli/generateDefinitionFromModels.js",
"swagger:lint": "npx @redocly/openapi-cli lint swagger.json --format stylish",
"swagger": "npm run swagger:create && npm run swagger:lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aeternity/tipping-community-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aeternity/tipping-community-backend/issues"
},
"homepage": "https://github.com/aeternity/tipping-community-backend#readme",
"dependencies": {
"@aeternity/aepp-calldata": "^1.7.0",
"@aeternity/aepp-sdk": "^13.3.2",
"@sentry/node": "^6.13.2",
"@sentry/tracing": "^6.13.2",
"aeternity-fungible-token": "git+https://git@github.com/aeternity/aeternity-fungible-token#v2.2.0",
"async-lock": "^1.3.0",
"axios": "^0.22.0",
"bignumber.js": "^9.0.1",
"cld": "^2.7.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-handlebars": "^5.3.4",
"express-openapi-validator": "^4.13.1",
"fuse.js": "^6.4.6",
"glob": "^7.2.0",
"ipfs-http-client": "^56.0.0",
"languagedetect": "^2.0.0",
"metascraper": "^5.24.8",
"metascraper-description": "^5.24.8",
"metascraper-image": "^5.24.8",
"metascraper-lang": "^5.24.8",
"metascraper-title": "^5.24.8",
"metascraper-url": "^5.24.8",
"multer": "^1.4.3",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"puppeteer": "^10.4.0",
"redis": "^3.1.2",
"rsmq": "^0.12.4",
"rxjs": "^7.3.1",
"sequelize": "^5.22.3",
"sequelize-hierarchy": "^2.0.4",
"sharp": "^0.31.3",
"swagger-ui-express": "^4.1.6",
"tipping-contract": "git+https://git@github.com/aeternity/tipping-contract#v5.0.0-alpha2",
"tipping-oracle-service": "git+https://git@github.com/superhero-com/tipping-oracle-service#v0.3.7",
"token-registry": "git+https://git@github.com/superhero-com/token-registry#v1.0.2",
"uuid": "^8.3.2",
"websocket": "^1.0.34",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5",
"wordbazaar-contracts": "git+https://git@github.com/superhero-com/wordbazaar-contracts#v0.0.4-alpha5"
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"husky": "^7.0.2",
"mocha": "^9.1.2",
"rewire": "^5.0.0",
"sequelize-auto-migrations": "git+https://git@github.com/scimonster/sequelize-auto-migrations#a063aa6535a3f580623581bf866cef2d609531ba",
"sinon": "^11.1.2",
"swagger-jsdoc": "^6.1.0"
}
}