forked from SundaeSwap-finance/sundae-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.81 KB
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
{
"name": "@sundaeswap/sdk",
"version": "0.1.0",
"type": "module",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"postinstall": "lerna bootstrap",
"test": "yarn node --max-old-space-size=6000 --no-warnings --experimental-vm-modules $(yarn bin jest)",
"lint": "eslint ./packages --ext js,jsx,ts,tsx",
"lint:fix": "yarn lint --fix",
"prepare": "husky install",
"typecheck": "lerna run typecheck",
"build": "lerna run build",
"version:ci": "lerna version -y --ignore-scripts",
"publish:ci": "lerna publish from-package -y",
"docs": "lerna run docs:ci",
"dev": "concurrently \"cd packages/core && yarn watch\" \"cd packages/taste-tests && yarn watch\" \"cd packages/demo && yarn start\""
},
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint:fix --quiet"
]
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@sundaeswap/asset": "^0.7.1",
"@sundaeswap/docgen": "^0.1.2",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5",
"concurrently": "^8.2.1",
"eslint": "^8.31.0",
"eslint-config-next": "^12",
"eslint-config-prettier": "^8",
"eslint-plugin-import": "^2",
"eslint-plugin-jest": "^26",
"eslint-plugin-jsx-a11y": "^6",
"eslint-plugin-prettier": "^4",
"eslint-plugin-react": "^7",
"eslint-plugin-react-hooks": "^4",
"glob": "^8.0.3",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-dom": "^4.0.0",
"jest-fetch-mock": "^3.0.3",
"lerna": "^5.6.2",
"lint-staged": "^15.1.0",
"log-update": "^6.0.0",
"lucid-cardano": "^0.10.7",
"prettier": "^2",
"ts-jest": "^29.0.4",
"ts-node": "^10.9.1"
},
"dependencies": {}
}