-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.37 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.37 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
40
41
42
43
{
"name": "@dydxprotocol/node-service-base-dev",
"version": "0.3.2",
"description": "Shared development configuration and utilities for Node services",
"main": "build/index.js",
"scripts": {
"build": "rm -rf build/ && npm run compile",
"compile:watch": "npm run compile -- --watch",
"compile": "tsc",
"fix": "npm run lint -- --fix",
"lint": "eslint --ext .ts,.js .",
"prepublishOnly": "npm run compile",
"test:watch": "npm test -- --watch",
"test": "NODE_ENV=test jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dydxprotocol/node-service-base-dev.git"
},
"author": "dYdX Trading Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dydxprotocol/node-service-base-dev/issues"
},
"homepage": "https://github.com/dydxprotocol/node-service-base-dev#readme",
"dependencies": {
"@types/jest": "^28.1.1",
"@types/lodash": "^4.14.161",
"@types/node": "^14.6.4",
"@types/ffi-napi": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"coveralls": "^3.1.0",
"dotenv-flow": "^3.2.0",
"eslint": "^7.8.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-no-only-tests": "2.4.0",
"jest": "^28.1.1",
"nodemon": "^2.0.4",
"typescript": "^4.7.3"
}
}