-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.64 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
{
"name": "hype_project",
"private": true,
"workspaces": {
"packages": [
"services/*",
"packages/*"
],
"nohoist": [
"**/@openzeppelin"
]
},
"resolutions": {
"concat-stream": "^2.0.0"
},
"scripts": {
"start": "concurrently \"SKIP_PREFLIGHT_CHECK=true yarn workspace hype-backend start & SKIP_PREFLIGHT_CHECK=true yarn workspace hype-client start\"",
"start-client": "SKIP_PREFLIGHT_CHECK=true yarn workspace hype-client start",
"build-client": "SKIP_PREFLIGHT_CHECK=true yarn workspace hype-client build",
"start-server": "SKIP_PREFLIGHT_CHECK=true yarn workspace hype-backend start",
"compile-contracts": "SKIP_PREFLIGHT_CHECK=true yarn workspace hype-contracts compile",
"test-contracts": "SKIP_PREFLIGHT_CHECK=true yarn workspace hype-contracts test --network hardhat",
"test-contracts:coverage": "SKIP_PREFLIGHT_CHECK=true yarn workspace hype-contracts coverage --network hardhat",
"test-client": "SKIP_PREFLIGHT_CHECK=true yarn workspace hype-client test --watchAll=false",
"deploy-local": "SKIP_PREFLIGHT_CHECK=true yarn workspace hype-contracts deploy-local",
"deploy-mainnet": "SKIP_PREFLIGHT_CHECK=true yarn workspace hype-contracts deploy-mainnet",
"deploy-testnet": "SKIP_PREFLIGHT_CHECK=true yarn workspace hype-contracts deploy-testnet",
"storybook": "SKIP_PREFLIGHT_CHECK=true yarn workspace hype-client storybook",
"build-storybook": "SKIP_PREFLIGHT_CHECK=true yarn workspace hype-client build-storybook",
"format": "prettier . --write && eslint --fix '*.{js,jsx,ts,tsx,json}'",
"lint": "eslint services/client & eslint services/hype-backend",
"pre-commit": "lint-staged",
"postinstall": "husky install",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn lint",
"eslint --max-warnings=50 --ignore-path '.eslintignore'"
],
"*.json": [
"prettier --write"
],
"services/client/**/*.{css,scss,sass,tsx,jsx}": [
"yarn workspace hype-client stylelint"
],
"services/hype-backend/**/*.{css,scss,sass,tsx,jsx}": [
"yarn workspace hype-backend stylelint"
]
},
"dependencies": {
"husky": "^7.0.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.14.0",
"concurrently": "^7.0.0",
"dotenv": "^16.0.3",
"eslint": "^8.34.0",
"eslint-config-airbnb-typescript-prettier": "^5.0.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.15",
"prettier": "^2.8.4"
}
}