-
Notifications
You must be signed in to change notification settings - Fork 302
/
package.json
53 lines (53 loc) · 1.64 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
{
"name": "@hashmd/monorepo",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm clean && pnpm icon && tsc --build && echo TODO",
"clean": "rm -rf packages/*/tsconfig.tsbuildinfo && rm -rf packages/*/dist",
"dev": "pnpm --filter example-lit dev",
"format": "prettier --write '**/*.{ts,tsx,js,json,css,md}'",
"icon": "node scripts/icon.js && prettier --write '**/icons.ts'",
"postinstall": "node scripts/postinstall.js && tsconfig-gen && pnpm format && sort-json packages/*/locales/*.json",
"pub": "pnpm build && lerna publish",
"style": "prettier --check '**/*.{ts,tsx,js,json,css,md}'",
"test": "echo TODO"
},
"prettier": {
"importOrderParserPlugins": [
"typescript",
"jsx",
"decorators-legacy"
],
"plugins": [
"@trivago/prettier-plugin-sort-imports",
"prettier-plugin-packagejson"
]
},
"devDependencies": {
"@icon-park/svg": "^1.4.2",
"@testing-library/jest-dom": "^6.1.4",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/fs-extra": "^11.0.2",
"@types/lodash-es": "^4.17.9",
"@types/resolve": "^1.20.3",
"decode-named-character-reference": "^1.0.2",
"fs-extra": "^11.1.1",
"happy-dom": "^12.9.1",
"lerna": "^7.3.1",
"lodash-es": "^4.17.21",
"mustache": "^4.2.0",
"prettier": "^3.0.3",
"prettier-plugin-packagejson": "^2.4.6",
"resolve": "^1.22.8",
"sass": "^1.69.3",
"sort-json": "^2.0.1",
"svgo": "^3.0.2",
"tsconfig-gen": "^0.3.1",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vite-workspace": "^0.2.0",
"vitest": "^0.34.6"
},
"packageManager": "[email protected]"
}