-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.28 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
{
"name": "edgeware-watcher",
"version": "1.0.0",
"description": "Daemon to watch and act on Edgeware events",
"main": "src/index.ts",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"check-types": "tsc",
"build": "node_modules/@babel/cli/bin/babel.js ./src --out-dir lib --extensions '.ts,.tsx'",
"start": "yarn build && node ./lib/index.js",
"create-gist": "yarn build && node ./lib/scripts/createGist.js",
"create-tweet": "yarn build && node ./lib/scripts/createTweet.js"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.4",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.0.0",
"typescript": "^3.3.3333"
},
"dependencies": {
"@babel/runtime": "^7.3.4",
"@polkadot/api": "^0.76.1",
"@types/crypto-js": "^3.1.43",
"axios": "^0.18.1",
"bs58": "^4.0.1",
"commander": "^2.19.0",
"crypto-js": "^3.1.9-1",
"dotenv": "^6.2.0",
"github-api": "^3.0.0",
"mongodb": "^3.1.13",
"twit": "^2.2.11"
}
}