-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·62 lines (62 loc) · 1.75 KB
/
package.json
File metadata and controls
executable file
·62 lines (62 loc) · 1.75 KB
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
{
"name": "api",
"version": "1.2.18",
"description": "Reef explorer API",
"author": "Reef Chain",
"license": "Apache-2.0",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js",
"dev": "nodemon src/index.ts",
"test": "mocha --check-leaks -r ts-node/register --timeout 10000 \"test/**/*.test.ts\"",
"lint": "eslint --fix --ext .ts ./src/"
},
"dependencies": {
"@apollo/client": "^3.8.6",
"@google-cloud/storage": "^6.9.5",
"@reef-defi/evm-provider": "^1.0.10",
"@reef-defi/util-crypto": "^7.8.2",
"@sentry/integrations": "^7.48.0",
"@sentry/node": "^7.48.0",
"@sentry/tracing": "^7.48.0",
"ajv": "^8.11.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cross-fetch": "^3.1.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"graphql": "^16.6.0",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"pg": "^8.9.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.28.0",
"sequelize-typescript": "^2.1.5",
"solc": "^0.8.11",
"umzug": "^3.2.1"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^9.0.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"@types/pg": "^8.6.6",
"@types/sequelize": "^4.28.14",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"chai": "^4.3.4",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.3",
"nodemon": "^2.0.14",
"ts-node": "^10.3.0",
"typescript": "4.9.5"
}
}