-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
90 lines (90 loc) · 2.8 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
{
"name": "@vulcanize/eth-watcher-ts",
"version": "0.0.24",
"type": "commonjs",
"types": "./dist",
"main": "./dist/server.js",
"files": [
"dist/"
],
"description": "Contract watcher on TypeScript",
"scripts": {
"test": "jest",
"lint": "npx eslint --max-warnings 0 --ext=ts,tsx .",
"build": "npx tsc",
"prepublishOnly": "npm run test && npm run lint",
"prepare": "npm run build",
"dev": "npx ts-node ./src/run.ts",
"start": "NODE_ENV=production npx node ./dist/run.js",
"sync": "npx ts-node ./src/syncDaemon.ts",
"prod": "npm run build && npm run start",
"migrate:up": "npx ts-node ./node_modules/typeorm/cli.js migration:run",
"//": "downgrade last migration",
"migrate:down": "npx ts-node ./node_modules/typeorm/cli.js migration:revert",
"build-browser-lib": "npx webpack",
"static-serve": "npx serve public -p 3000",
"getAbi": "npx ts-node dev/getAbi.ts",
"backfill": "npx ts-node ./src/backfillService.ts"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vulcanize/eth-watcher-ts.git"
},
"dependencies": {
"@apollo/client": "^3.2.0",
"@graphile/pg-pubsub": "^4.11.0",
"@iarna/toml": "^2.2.5",
"@solidity-parser/parser": "^0.11.1",
"@types/express": "^4.17.1",
"@types/http-status-codes": "^1.2.0",
"@types/node": "^10.17.34",
"await-to-js": "^2.1.1",
"awesome-typescript-loader": "^5.2.1",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"ejs": "^3.1.6",
"envalid": "^5.0.0",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^7.0.5",
"express": "^4.17.1",
"graphql": "^14.7.0",
"http-status-codes": "^1.4.0",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.1",
"postgraphile": "^4.9.0",
"react": "^16.13.1",
"solidity-parser-diligence": "^0.4.18",
"subscriptions-transport-ws": "^0.9.18",
"ts-node": "^8.10.2",
"typeorm": "^0.2.26",
"typescript": "^3.9.7",
"webpack": "^5.10.0",
"ws": "^7.4.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.13",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"babel-jest": "^26.3.0",
"eslint": "^6.6.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prefer-arrow": "^1.1.6",
"expose-loader": "^1.0.3",
"jest": "^26.4.2",
"path-browserify": "^1.0.1",
"serve": "^11.3.2",
"stream-browserify": "^3.0.0",
"ts-jest": "^26.4.1",
"typeorm-model-generator": "^0.4.2",
"webpack-cli": "^4.2.0"
}
}