This repository has been archived by the owner on Jan 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
82 lines (82 loc) · 2.4 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
{
"name": "ethql",
"private": true,
"version": "0.0.1",
"description": "A GraphQL interface to Ethereum",
"author": "ConsenSys",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ConsenSys/ethql"
},
"bugs": {
"url": "https://github.com/ConsenSys/ethql/issues"
},
"contributors": [
"Raúl Kripalani <[email protected]>",
"Akhila Raju <[email protected]>",
"Jonathan Buhler",
"Evgeniy Filatov <[email protected]>",
"Kris Shinn <[email protected]>"
],
"keywords": [
"ethereum",
"graphql"
],
"main": "dist/index.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"clean": "lerna run clean",
"bootstrap": "lerna bootstrap",
"start": "lerna link && lerna run --stream start",
"dev": "lerna link && lerna run --stream dev",
"debug": "lerna link && lerna run --stream debug",
"build": "npm run build:docker",
"build:ts": "lerna link && lerna run --stream build:ts",
"build:docker": "docker image build -t ethql .",
"lint": "npm-run-all lint:ts lint:rest",
"lint:ts": "tslint --fix -t stylish -c tslint.json -p tsconfig.json && prettier --parser typescript --write 'packages/*/src/**/*.ts'",
"lint:rest": "prettier 'packages/*/**/*.{md,json}' --write",
"test": "lerna link && lerna run --parallel test ",
"test:ci": "lerna link && lerna run --parallel test:ci",
"test:watch": "lerna link && lerna run --parallel test:watch",
"coverage": "jest --collectCoverage",
"precommit": "npm run test && lerna run --parallel lint"
},
"lint-staged": {
"*.ts": [
"tslint --fix -t stylish -c tslint.json -p tsconfig.json",
"prettier --parser typescript --write",
"git add"
],
"*.{js,css,scss,html,json,graphql,md}": [
"prettier --write",
"git add"
]
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/jest": "^23.1.0",
"copyfiles": "^2.0.0",
"dotenv": "^6.0.0",
"dotenv-cli": "^1.4.0",
"husky": "^1.2.0",
"immutable": "^4.0.0-rc.12",
"jest": "^23.5.0",
"lerna": "^3.4.3",
"lint-staged": "^8.1.0",
"lodash": "^4.17.10",
"npm-run-all": "^4.1.3",
"prettier": "1.15.3",
"rimraf": "^2.6.2",
"ts-jest": "^23.1.4",
"tsc-watch": "^1.0.30",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.3.3333"
}
}