-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
80 lines (80 loc) · 2.37 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
{
"name": "root",
"version": "3.0.0",
"workspaces": [
"**/*"
],
"private": true,
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pretty": "prettier . --check",
"pretty:fix": "prettier . --write",
"clean": "yarn workspaces foreach --parallel exec rm -rf dist coverage build && find . -name 'tsconfig.tsbuildinfo' -delete",
"test": "jest",
"build": "yarn workspaces foreach --topological-dev --all --verbose run build",
"typecheck": "tsc --noEmit",
"deps": "deps",
"deps:fix": "deps --fix",
"deps:mismatched": "deps-mismatched",
"deps:circular": "deps-circular",
"deps:version": "deps-version",
"upgrade-browsers": "yarn up browserslist caniuse-lite --recursive",
"upgrade-contracts": "yarn up @synthetixio/v3-contracts --recursive",
"svg": "svgo --config svgo.config.js --recursive ./",
"svg:check": "yarn svg && git diff --exit-code **/*.svg",
"download-cci-coverage": "download-cci-coverage"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@synthetixio/deps": "workspace:*",
"@synthetixio/download-cci-coverage": "workspace:*",
"@tanstack/eslint-plugin-query": "^5.8.3",
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"babel-jest": "^29.7.0",
"eslint": "^8.53.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-staged": "^15.1.0",
"nyc": "^15.1.0",
"prettier": "^3.1.0",
"svgo": "^3.2.0",
"typescript": "^5.4.5"
},
"browserslist": [
"last 1 Chrome version",
"last 1 Firefox version",
"last 1 Edge version",
"last 1 Opera version"
],
"resolutions": {
"@synthetixio/v3-contracts": "synthetixio/v3-contracts#master",
"@emotion/is-prop-valid": "^1.2.0",
"big.js": "^6.1.1",
"bn.js": "^5.2.1",
"browserslist": "4",
"caniuse-lite": "1",
"classnames": "2.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"prettier --check",
"eslint"
]
},
"packageManager": "[email protected]"
}