This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
67 lines (67 loc) · 2.17 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
{
"private": true,
"scripts": {
"prettier": "prettier --check '**/*.{js,jsx,ts,tsx,json}'",
"prettier:write": "prettier --write '**/*.{js,jsx,ts,tsx,json}'",
"lint": "eslint . --ext .js,.json,.jsx,.ts,.tsx",
"lint:fix": "eslint --fix . --ext .js,.json,.jsx,.ts,.tsx",
"docker:up:testnet": "ENV=testnet docker-compose up",
"docker:up:mainnet": "ENV=mainnet docker-compose up",
"docker:up:shardnet": "ENV=shardnet docker-compose up",
"docker:up:guildnet": "ENV=guildnet docker-compose up",
"typecheck": "npm run -w frontend typecheck && npm run -w backend typecheck",
"build": "npm run -w frontend build && npm run -w backend build",
"start": "concurrently \"npm run -w frontend start\" \"npm run -w backend start:mainnet\"",
"postinstall": "patch-package && npm --workspaces --if-present run postinstall",
"test:e2e": "playwright test -c frontend"
},
"workspaces": [
"common",
"frontend",
"backend"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,json,md}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx,json}": [
"eslint --fix"
]
},
"dependencies": {
"@explorer/backend": "*",
"@explorer/common": "*",
"@explorer/frontend": "*",
"dotenv-cli": "^5.0.0",
"gleap": "^8.4.7",
"patch-package": "^6.4.7"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.3.1",
"@types/webpack": "^5.28.1",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"concurrently": "^7.2.1",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.3.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-no-relative-import-paths": "^1.5.2",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^2.3.0",
"jsonc-eslint-parser": "^2.1.0",
"lint-staged": "^11.0.0",
"prettier": "2.8.8",
"start-server-and-test": "^1.14.0",
"typescript": "^4.9.5"
}
}