-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.63 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "bottlecap",
"description": "A decentralized cryptocurrency",
"version": "1.0.64",
"main": "dist/index.js",
"scripts": {
"start:dev": "nodemon --exec babel-node --extensions \".ts,.tsx\" src/index.ts",
"start:prod": "node dist/index.js",
"build": "babel --extensions \".ts,.tsx\" --out-dir dist src",
"lint": "yarn lint:shell && yarn lint:md && yarn lint:js && yarn lint:ts",
"lint:ci": "yarn lint:ci:commit && yarn lint:ci:shell && yarn lint:ci:md && yarn lint:ci:js && yarn format:ci && yarn lint:ci:ts",
"lint:ts": "tslint --project . --fix",
"lint:ci:ts": "tslint --project .",
"lint:shell": "shellcheck scripts/**/*.sh",
"lint:ci:shell": "shellcheck scripts/**/*.sh",
"lint:js": "eslint --fix .",
"lint:ci:js": "eslint .",
"lint:md": "yarn markdownlint --ignore node_modules --ignore website/node_modules **/*.md",
"lint:ci:md": "yarn markdownlint --ignore node_modules --ignore website/node_modules **/*.md",
"lint:ci:commit": "commitlint-travis",
"format": "prettier --write src/**/*",
"format:ci": "prettier --list-different src/**/*",
"test": "jest",
"test:ci": "yarn test --coverage",
"test:watch": "jest --onlyChanged --watch",
"posttest:ci": "yarn coverage",
"coverage": "codecov",
"prebuild": "yarn typecheck:ts && yarn clean",
"typecheck:ts": "tsc",
"clean": "rimraf dist",
"commit": "commit"
},
"homepage": "https://github.com/strattadb/bottlecap",
"repository": "[email protected]:strattadb/bottlecap.git",
"author": {
"name": "Diego Stratta",
"email": "[email protected]",
"url": "https://github.com/strattadb"
},
"bugs": {
"url": "https://github.com/strattadb/bottlecap/issues"
},
"keywords": [
"cryptocurrency",
"blockchain",
"typescript",
"bottlecap"
],
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/cli": "7.0.0-rc.2",
"@babel/core": "7.0.0-rc.2",
"@babel/node": "7.0.0-rc.2",
"@babel/plugin-proposal-optional-catch-binding": "7.0.0-rc.2",
"@babel/preset-env": "7.0.0-rc.2",
"@babel/preset-typescript": "7.0.0-rc.2",
"@commitlint/cli": "7.0.0",
"@commitlint/config-conventional": "7.0.1",
"@commitlint/prompt-cli": "7.0.0",
"@commitlint/travis-cli": "7.0.0",
"@playlyfe/gql": "2.6.0",
"@types/graphql": "0.13.4",
"@types/jest": "23.3.1",
"@types/mkdirp": "0.5.2",
"@types/node": "10.9.1",
"@types/ramda": "0.25.36",
"@types/uuid": "3.4.3",
"@types/ws": "6.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "8.2.6",
"babel-jest": "23.4.2",
"babel-plugin-dynamic-import-node": "2.0.0",
"codecov": "3.0.4",
"danger": "3.8.6",
"eslint": "5.4.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "3.0.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-prettier": "2.6.2",
"husky": "1.0.0-rc.13",
"jest": "23.5.0",
"lint-staged": "7.2.2",
"markdownlint-cli": "0.13.0",
"nodemon": "1.18.3",
"prettier": "1.14.2",
"prettier-eslint": "8.8.2",
"prettier-eslint-cli": "4.7.1",
"rimraf": "2.6.2",
"tslint": "5.11.0",
"tslint-config-airbnb": "5.10.0",
"tslint-config-prettier": "1.15.0",
"typescript": "3.0.1"
},
"dependencies": {
"@babel/polyfill": "^7.0.0-beta.51",
"apollo-server": "^2.1.0-alpha",
"core-js": "3.0.0-beta.3",
"elliptic": "^6.4.0",
"graphql": "^0.13.2",
"mkdirp": "^0.5.1",
"ramda": "^0.25.0",
"uuid": "^3.3.2",
"winston": "^3.0.0",
"ws": "^6.0.0"
},
"resolutions": {
"babel-core": "^7.0.0-bridge.0"
},
"engines": {
"node": ">= 10.0.0"
}
}