forked from sushi-labs/sushiswap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.96 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
{
"name": "sushi",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "turbo run build",
"changeset": "changeset",
"changeset-publish": "turbo run build --filter=docs^... && changeset publish",
"changeset-version": "changeset version",
"clean": "turbo run clean && rm -rf node_modules",
"dev": "turbo run dev --no-cache --parallel --continue",
"disable-remote-caching": "turbo unlink && rm -rf ./node_modules/.cache/turbo",
"enable-remote-caching": "turbo link",
"format": "prettier --write \"**/*.{ts,tsx,md,js,mjs}\"",
"lint": "turbo run lint",
"prepare": "husky install ",
"sort": "sort-package-json 'package.json' 'apis/*/package.json' 'apps/*/package.json' 'examples/*/package.json' 'packages/{,!(node_modules)/}**/package.json' 'protocols/{,!(node_modules)/}**/package.json'",
"sort-check": "sort-package-json 'package.json' 'apis/*/package.json' 'apps/*/package.json' 'examples/*/package.json' 'packages/{,!(node_modules)/}**/package.json' 'protocols/{,!(node_modules)/}**/package.json' --check",
"test": "turbo run test --parallel"
},
"lint-staged": {
"*.ts": [
"eslint --cache --fix",
"prettier --write"
],
"*.sol": [
"solhint -c .solhint.json",
"prettier --write",
"pnpm test"
],
"*.md": "prettier --write"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@commitlint/types": "^17.0.0",
"@sushiswap/eslint-config": "workspace:*",
"@sushiswap/jest-config": "workspace:*",
"@sushiswap/prettier-config": "workspace:*",
"@types/jest": "^28.1.0",
"@types/node": "^17.0.0",
"eslint": "^8.20.0",
"husky": "^8.0.0",
"jest": "^28.1.0",
"lint-staged": "^13.0.0",
"prettier": "^2.7.0",
"sort-package-json": "^1.57.0",
"ts-jest": "^28.0.0",
"turbo": "latest"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.x",
"pnpm": ">=6.x"
}
}