-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.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
{
"name": "frontend-configurations",
"description": "SundaeSwap Frontend Configurations for all of our Frontend Packages",
"author": {
"name": "SundaeSwap Labs, Inc.",
"url": "https://www.sundaeswap.finance/"
},
"bugs": {
"url": "https://github.com/SundaeSwap-finance/frontend-configurations/issues"
},
"homepage": "https://github.com/SundaeSwap-finance/frontend-configurations#readme",
"private": true,
"workspaces": [
"packages/*"
],
"type": "module",
"lint-staged": {
"*.{js,jsx,ts,tsx}": "bun run lint --fix"
},
"scripts": {
"lint": "eslint --ignore-pattern '**/dist/**'",
"lint:fix": "bun run lint --fix",
"clean": "lerna run clean",
"build": "lerna run build --scope '@sundaeswap/*'",
"lint-staged": "lint-staged",
"prepare": "husky",
"version": "lerna version patch --y",
"publish": "bun run build && lerna publish from-package -y",
"canary": "lerna publish from-package -y --canary",
"test": "lerna run test",
"tsc": "tsc -b"
},
"devDependencies": {
"@sundaeswap/eslint-config": "workspace:*",
"@sundaeswap/prettier-config": "workspace:*",
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"husky": "^9.0.11",
"lerna": "^8.1.3",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"typescript": "^5.4.5"
},
"version": "0.0.0"
}