-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 3 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
{
"name": "octant",
"version": "1.0.0",
"description": "The decentralised governance system from Golem Foundation",
"scripts": {
"eslint": "eslint './**/*.{js,jsx,ts,tsx}'",
"eslint:fix": "yarn prettier && yarn eslint --fix",
"prepare": "husky install",
"prettier": "yarn prettier:js --loglevel silent && yarn prettier:ts --loglevel silent",
"prettier:js": "yarn prettier:js:pure './**/*.{js,jsx}'",
"prettier:js:pure": "prettier --write",
"prettier:ts": "yarn prettier:ts:pure './**/*.{ts,tsx}'",
"prettier:ts:pure": "prettier --parser typescript --write",
"type-check": "tsc --noEmit true",
"localenv:build-images": "./localenv/scripts/images.sh",
"localenv:build-backend": "./localenv/scripts/images.sh backend",
"localenv:build-anvil": "docker build --tag octant/anvil:latest -f localenv/anvil/Dockerfile localenv/anvil",
"localenv:up": "docker compose -p localenv -f ./localenv/docker-compose.yaml -f ./localenv/localenv.yaml up",
"localenv:down": "docker compose -p localenv -f ./localenv/docker-compose.yaml -f ./localenv/localenv.yaml down",
"localenv:clean": "docker rm -v -f $(docker ps -qa --filter 'name=localenv') || true",
"localenv:force-clean": "yarn localenv:clean",
"localenv:reload": "yarn localenv:down && yarn localenv:build-images && yarn localenv:up",
"apitest:up": "docker compose -p apitest -f ./localenv/docker-compose.yaml -f ./localenv/apitest.yaml up anvil ipfs graph-postgres graph-node multideployer",
"apitest:down": "docker compose -p apitest -f ./localenv/docker-compose.yaml -f ./localenv/apitest.yaml down",
"apitest:logs": "docker compose -p apitest -f ./localenv/docker-compose.yaml -f ./localenv/apitest.yaml logs",
"apitest:run": "docker compose -p apitest -f ./localenv/docker-compose.yaml -f ./localenv/apitest.yaml run backend-apitest",
"apitest:clean": "docker rm -v -f $(docker ps -qa --filter 'name=apitest') || true",
"preapitest:up": "yarn apitest:clean",
"preapitest:run": "yarn localenv:build-backend"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/wildland/octant.git"
},
"keywords": [
"governance",
"staking"
],
"author": "Golem Foundation Contributors <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://gitlab.com/wildland/octant/issues"
},
"homepage": "https://wildland.io/",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"typescript": "5.0.2"
}
}