-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
34 lines (34 loc) · 1.21 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
{
"name": "spock-playground",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"scripts": {
"start-etl": "node -r ./loadenv.js ./node_modules/@makerdao-dux/spock-etl/dist/bin/etl ./config.js",
"start-sync": "yarn migrate",
"migrate:only": "node -r ./loadenv.js ./node_modules/@makerdao-dux/spock-etl/dist/bin/migrate ./config.js",
"migrate": "yarn migrate:only && yarn insert-poll-creators",
"start-api": "node -r ./loadenv.js ./node_modules/@makerdao-dux/spock-graphql-api/dist/index.js ./config.js",
"test": "jest",
"test:ci": "./tests/run-tests.sh",
"repl": "node --experimental-repl-await -r ./loadenv.js ./repl",
"insert-poll-creators": "node insert_poll_creators.js"
},
"dependencies": {
"@makerdao-dux/spock-etl": "^0.2.0",
"@makerdao-dux/spock-graphql-api": "^0.2.1",
"@makerdao-dux/spock-utils": "^0.2.0",
"bignumber.js": "^9.0.2",
"consola": "^2.15.3",
"dotenv-flow": "^2.0.0",
"ethers": "krzkaczor/ethers.js#kk/get-logs-multiple-address-build",
"pg-promise": "10.11.1"
},
"devDependencies": {
"eslint": "^8.23.1",
"eslint-plugin-prettier": "^4.2.1",
"graphql-request": "^1.8.2",
"jest": "^24.8.0"
}
}