forked from astroport-fi/astroport-classic-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 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
{
"name": "astroport-api",
"version": "1.0.0",
"main": "src/index.js",
"author": "Arthur Itey",
"private": true,
"engines": {
"node": ">=12.3.1",
"npm": ">=6.9.0"
},
"type": "commonjs",
"scripts": {
"dev": "serverless offline start --stage local --useChildProcesses",
"dev-stage": "serverless offline start --stage dev --useChildProcesses",
"database:clean": "rimraf mongodb_data",
"database": "mkdir -p mongodb_data/rs0-0 ; mongod --dbpath=mongodb_data/rs0-0 --replSet rs0 --port 27050 --oplogSize 128 --profile=1 --slowms=1",
"database:init": "mongo --port 27050 tools/init-mongodb-rs.js",
"eslint": "eslint --quiet --ext .ts --ext .js .",
"prettier": "prettier --list-different '**/*.{ts,tsx,js,jsx,json,css,md}'",
"test": "mocha",
"test-dev": "./node_modules/dotenv-cli/cli.js -e .env.dev mocha",
"test-watch": "mocha --watch",
"typescript": "tsc --noEmit"
},
"dependencies": {
"@graphql-tools/schema": "^8.3.0",
"@saberhq/stableswap-sdk": "^1.12.37",
"@terra-money/log-finder": "^1.1.6",
"@terra-money/terra.js": "^3.0.2",
"@types/aws-lambda": "^8.10.89",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"apollo-server": "^3.5.0",
"apollo-server-lambda": "^3.5.0",
"bignumber.js": "^9.0.2",
"bluebird": "^3.7.2",
"chai": "^4.3.4",
"dayjs": "^1.10.7",
"graphql": "^16.2.0",
"graphql-request": "^3.7.0",
"graphql-scalars": "^1.12.0",
"graphql-type-json": "^0.3.2",
"husky": "7.0.1",
"lodash": "^4.17.21",
"mongodb": "^3.6.9",
"mongoose": "^6.1.3",
"node-fetch": "^3.1.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
},
"devDependencies": {
"@graphql-eslint/eslint-plugin": "^3.3.0",
"@types/bluebird": "^3.5.36",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.170",
"@types/mongodb": "^3.6.19",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "^4.33.0",
"dotenv-cli": "^5.1.0",
"eslint": "7.30.0",
"eslint-config-typescript": "^3.0.0",
"jest": "^27.0.6",
"lint-staged": "^11.0.0",
"mocha": "^9.1.3",
"prettier": "^2.3.2",
"serverless-dotenv-plugin": "^3.10.0",
"serverless-offline": "8.5.0",
"serverless-plugin-conditional-functions": "^1.0.7",
"serverless-plugin-typescript": "^2.1.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.14.1"
},
"prettier": {
"singleQuote": false,
"printWidth": 100,
"semi": true,
"trailingComma": "es5",
"tabWidth": 2,
"useTabs": false
}
}