-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
{
"name": "hula-emojis-monorepo",
"version": "1.0.0",
"packageManager": "[email protected]",
"description": "The monorepo of Hula Emojis",
"repository": {
"type": "git",
"url": "git+https://github.com/HuLaSpark/Hula-Emojis.git"
},
"scripts": {
"dev": "lerna run dev --scope demo --stream",
"clean": "lerna clean -y",
"auto-update": "tsx scripts/auto-update.ts",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,mjs,mts}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss}": [
"stylelint --fix",
"prettier --write"
],
"*.{vue,html}": [
"stylelint --fix",
"eslint --fix",
"prettier --write"
],
"*.{json,d.ts}": [
"prettier --write"
]
},
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/fs-extra": "^11.0.4",
"eslint": "^9.18.0",
"eslint-plugin-vue": "^9.32.0",
"fs-extra": "^11.3.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.4.1",
"ora": "^8.1.1",
"prettier": "^3.4.2",
"stylelint": "^16.13.2",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-high-performance-animation": "^1.10.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.2",
"stylelint-scss": "^6.10.1",
"tsx": "^4.19.2",
"typescript-eslint": "^8.20.0"
}
}