-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
63 lines (63 loc) · 2.64 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
{
"name": "cache",
"version": "0.0.1",
"private": true,
"license": "Apache-2.0",
"scripts": {
"typecheck": "tsc --noEmit",
"format": "prettier --config ./.prettierrc --ignore-path ./.prettierignore --list-different '**/*.{ts,json,md,gql}'",
"format:fix": "prettier --config ./.prettierrc --ignore-path ./.prettierignore --write '**/*.{ts,json,md,gql}'",
"tslint": "tslint -c ./tslint.json -p ./tsconfig.json -e 'node_modules/**/*' '**/*.ts'",
"tslint:fix": "tslint --fix -c ./tslint.json --format stylish -p ./tsconfig.json -e 'node_modules/**/*' '**/*.ts'",
"lint": "yarn format && yarn tslint && yarn typecheck",
"lint:fix": "yarn format:fix && yarn tslint:fix && yarn typecheck",
"test": "mocha --config ./.mocharc.js",
"test:coverage": "nyc --reporter=lcov yarn test && nyc report --reporter=text --reporter=text-summary",
"coverage": " yarn test:coverage && codecov",
"test:e2e": "jest --forceExit --runInBand e2e",
"test:e2e:fix": "jest -u --forceExit --runInBand e2e",
"test:fix": "yarn lint:fix && yarn test",
"start-etl": "TS_NODE_TRANSPILE_ONLY=true node -r ./loadenv.js ./node_modules/@oasisdex/spock-etl/dist/bin/etl.js ./src/config.ts",
"migrate": "TS_NODE_TRANSPILE_ONLY=true node -r ./loadenv.js ./node_modules/@oasisdex/spock-etl/dist/bin/migrate.js ./src/config.ts",
"start-api": "TS_NODE_TRANSPILE_ONLY=true DEBUG=apicache node -r ./loadenv.js ./node_modules/@oasisdex/spock-graphql-api/dist/index.js ./src/config.ts",
"build": "tsc --build .",
"clean": "rm -rf lib"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/lodash": "^4.14.123",
"@types/mocha": "^8.2.2",
"@types/node": "^10.12.18",
"@types/promise-retry": "^1.1.1",
"chai": "^4.3.4",
"earljs": "^0.1.10",
"mocha": "^8.3.2",
"prettier": "^1.19.1",
"sinon-chai": "^3.6.0",
"ts-node": "^8.0.3",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.12.1",
"typestrict": "^1.0.2"
},
"dependencies": {
"@google-cloud/bigquery": "^3.0.0",
"@oasisdex/automation": "1.6.5-morpho.6",
"@oasisdex/spock-etl": "^0.1.5",
"@oasisdex/spock-graphql-api": "^0.1.2",
"@oasisdex/spock-test-utils": "^0.1.1",
"@oasisdex/spock-utils": "^0.1.0",
"@oasisdex/spock-validation": "^0.1.0",
"abi-decoder": "^1.2.0",
"aws-sdk": "^2.1232.0",
"bignumber.js": "^8.0.2",
"consola": "^2.15.3",
"dotenv-flow": "^3.2.0",
"ethers": "krzkaczor/ethers.js#kk/get-logs-multiple-address-build",
"lodash": "^4.17.11",
"pg-promise": "^10.4.4",
"promise-retry": "^1.1.1",
"ts-essentials": "^6.0.1",
"ts-jest": "^25.0.0",
"typescript": "^4.2.3"
}
}