-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
66 lines (66 loc) · 1.8 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
{
"name": "dep-spy",
"version": "1.1.0",
"description": "",
"main": "index.js",
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"publish": "lerna publish",
"test": "vitest --no-threads",
"dev": "node ./scripts/index.mjs",
"build": "lerna run build",
"pm": "node scripts/performance/index.mjs",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "eslint ./packages --fix"
},
"keywords": [],
"author": "",
"license": "MIT",
"lint-staged": {
"packages/**/*.{js,jsx,tsx,ts}": [
"eslint --fix",
"git add ."
],
"packages/**/*.{css,scss}": [
"stylelint --fix",
"git add ."
]
},
"dependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@iconify-json/bi": "^1.1.18",
"@iconify-json/ic": "^1.1.14",
"@iconify-json/icon-park-outline": "^1.1.12",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@unocss/preset-icons": "^0.55.2",
"@vitest/coverage-v8": "^0.34.2",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lerna": "^7.1.4",
"lint-staged": "^13.2.3",
"ora": "^5.4.1",
"prettier": "^3.0.0",
"stylelint": "^15.10.2",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-prettier": "^4.0.2",
"stylelint-scss": "^5.1.0",
"vitepress": "1.0.0-rc.10",
"vitest": "^0.33.0"
}
}