-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.17 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
{
"name": "leptonite-api",
"description": "A demo marketplace powered by Boson Protocol.",
"keywords": [
"leptonite",
"boson",
"boson protocol",
"reference",
"backend",
"back-end"
],
"homepage": "https://github.com/bosonprotocol/reference-backend",
"bugs": "https://github.com/bosonprotocol/reference-backend",
"version": "1.0.0",
"main": "app.js",
"scripts": {
"start": "node app.js",
"start:local:triggers": "node external/lambdas/localTriggers.js",
"start:local:keepers": "cd external/keepers/src && node index.js",
"app:lint": "eslint app.js \"src/**/*.js\"",
"app:lint-fix": "eslint --fix app.js \"src/**/*.js\"",
"app:format": "prettier --list-different app.js \"src/**/*.js\"",
"app:format-fix": "prettier --write app.js \"src/**/*.js\"",
"tests:app:lint": "eslint \"test/**/*.js\"",
"tests:app:lint-fix": "eslint --fix \"test/**/*.js\"",
"tests:app:format": "prettier --list-different \"test/**/*.js\"",
"tests:app:format-fix": "prettier --write \"test/**/*.js\"",
"tests:app:unit": "mocha --reporter spec \"test/unit/**/*.test.js\"",
"tests:app:integration": "mocha --reporter spec \"test/integration/**/*.test.js\"",
"tests:app:persistence": "mocha --reporter spec \"test/persistence/**/*.test.js\"",
"tests:app:component": "mocha --reporter spec \"test/component/**/*.test.js\"",
"tests:app:unit:coverage": "nyc --all --no-clean --silent npm run tests:app:unit",
"tests:app:persistence:coverage": "nyc --all --no-clean --silent npm run tests:app:persistence",
"tests:app:component:coverage": "nyc --all --no-clean --silent npm run tests:app:component",
"tests:coverage:badge": "nyc report --reporter=json-summary --reporter=lcov && coverage-badge-creator"
},
"contributors": [
"HristiyanG",
"George Spasov",
"Vladislav Ivanov",
"Aneta",
"Richard Littauer <[email protected]> (https://burntfen.com)",
"thecryptofruit"
],
"license": "LGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/bosonprotocol/reference-backend.git"
},
"dependencies": {
"@google-cloud/storage": "^5.1.1",
"aws-sdk": "^2.907.0",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"ethers": "^5.4.5",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"form-data": "^4.0.0",
"install": "^0.13.0",
"jsonwebtoken": "^8.5.1",
"mock-express-request": "^0.2.2",
"mongodb": "^3.5.8",
"mongoose": "^5.9.19",
"mongoose-update-if-current": "^1.4.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"npm": "^7.6.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coverage-badge-creator": "^1.0.4",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eth-sig-util": "^3.0.1",
"faker": "^5.3.1",
"firebase-tools": "^9.2.2",
"freeport": "^1.0.5",
"keccak256": "^1.0.2",
"keythereum": "^1.2.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"superagent": "^6.1.0",
"superagent-auth-bearer": "0.0.1"
}
}