-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
59 lines (59 loc) · 1.84 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
{
"name": "gatewaycash",
"version": "0.1.0",
"description": "Payment Processor for Bitcoin Cash",
"repository": {
"type": "git",
"url": "git+https://github.com/gatewaycash/gateway.git"
},
"private": true,
"workspaces": {
"packages": [
"modules/*"
]
},
"keywords": [
"bitcoin",
"cash"
],
"scripts": {
"api-start": "yarn workspace @gatewaycash/api start",
"api-setup": "yarn workspace @gatewaycash/api setup",
"api-test": "yarn workspace @gatewaycash/api test",
"api-docs-build": "yarn workspace @gatewaycash/docs api",
"inject-build": "yarn workspace @gatewaycash/inject build",
"inject-dev": "yarn workspace @gatewaycash/inject dev",
"paybutton-build": "yarn workspace @gatewaycash/paybutton build",
"paybutton-docs-build": "yarn workspace @gatewaycash/docs paybutton",
"site-build": "yarn workspace @gatewaycash/website build",
"site-dev": "yarn workspace @gatewaycash/website start",
"site-setup": "yarn workspace @gatewaycash/website setup",
"build": "./scripts/build.sh",
"dev": "./scripts/dev.sh",
"setup": "./scripts/setup.sh",
"cli": "node modules/utils/APIInterface.js",
"lint": "eslint --fix .",
"test": "yarn api-test"
},
"author": "The Gateway Project Developers <[email protected]>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/gatewaycash/gateway/issues"
},
"homepage": "https://github.com/gatewaycash/gateway#readme",
"dependencies": {
"babel-eslint": "^10.0.5",
"concurrently": "^4.1.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-react-app": "^3.0.5",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.12.2",
"prettier": "^1.15.2",
"react": "^16.13.1"
},
"engines": {
"node": ">=13.3.0"
}
}