-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.31 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
{
"private": true,
"type": "module",
"name": "@dahlia-labs/dahlia-common",
"description": "Common libraries across Dahlia projects.",
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{md,js,json,yml,yaml,css,md}": "prettier --write"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@jest/types": "^29.3.1",
"@rushstack/eslint-patch": "^1.2.0",
"@saberhq/eslint-config": "^2.1.0",
"@saberhq/eslint-config-react": "^2.1.0",
"@saberhq/tsconfig": "^2.1.0",
"@size-limit/file": "^8.1.0",
"@size-limit/webpack": "^8.1.0",
"@types/babel__core": "^7.1.20",
"@types/babel__preset-env": "^7.9.2",
"@types/bn.js": "^5.1.1",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@types/source-map-support": "^0.5.6",
"@typescript-eslint/utils": "^5.45.0",
"@yarnpkg/doctor": "^4.0.0-rc.31",
"bn.js": "^5.2.1",
"buffer": "^6.0.3",
"eslint": "^8.28.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-runtime": "^29.3.1",
"jsbi": "^4.3.0",
"lint-staged": "^13.0.4",
"prettier": "^2.8.0",
"size-limit": "^8.1.0",
"source-map-support": "^0.5.21",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.21",
"typescript": "^4.9.3"
},
"scripts": {
"build": "yarn workspaces foreach --exclude @dahlia-labs/dahlia-common -ptv run build",
"clean": "yarn workspaces foreach --exclude @dahlia-labs/dahlia-common -ptv run clean",
"publish:all": "yarn workspaces foreach --exclude @dahlia-labs/dahlia-common -ptv npm publish",
"typecheck": "tsc --build",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"lint:ci": "eslint . --max-warnings=0",
"prepare": "husky install",
"size": "size-limit",
"analyze": "size-limit --why",
"docs:generate": "typedoc --excludePrivate --includeVersion --out docs/ --entryPointStrategy packages --includes packages/ $(find ./packages -mindepth 1 -maxdepth 1 | grep -v browserslist)",
"test": "jest **/*.test.ts",
"doctor:packages": "yarn doctor packages/"
},
"version": "0.11.4",
"packageManager": "[email protected]"
}