forked from sushi-labs/sushiswap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.03 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
{
"name": "interface",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean && rm -rf node_modules",
"dev": "turbo run dev --no-cache --parallel --continue",
"format": "prettier --write \"**/*.{ts,tsx,md,js,mjs}\"",
"lint": "turbo run lint",
"sort": "sort-package-json 'package.json' 'apis/*/package.json' 'apps/*/package.json' 'examples/*/package.json' 'packages/*/package.json' 'protocols/*/package.json'",
"sort-check": "sort-package-json 'package.json' 'apis/*/package.json' 'apps/*/package.json' 'examples/*/package.json' 'packages/*/package.json' 'protocols/*/package.json' --check",
"test": "turbo run test"
},
"devDependencies": {
"eslint": "8.14.0",
"jest": "^28.0.0",
"prettier": "^2.6.2",
"sort-package-json": "^1.55.0",
"ts-jest": "^27.1.4",
"turbo": "latest"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
}
}