-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.11 KB
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
{
"name": "websockets-example-js",
"version": "1.1.0",
"description": "Node.js orderbook sync with websockets",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"start-local": "./node_modules/.bin/nodemon ./node_modules/.bin/babel-node src",
"test": "ava test",
"build": "babel src -d dist",
"prepublish": "npm run build",
"deploy": "yarn build && waves deploy new-workers-dev"
},
"author": "Joaquin Diaz (Joadr)",
"license": "MIT",
"dependencies": {
"core-js": "^3.6.2",
"orionx-sdk": "^1.3.9",
"pusher-js": "^6.0.2",
"regenerator-runtime": "^0.13.3"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/register": "^7.7.7",
"ava": "^2.4.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.1"
}
}