-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
57 lines (57 loc) · 1.63 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
{
"name": "cesium-extends-monorepo",
"private": true,
"npmClient": "pnpm",
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"dev": "turbo dev --concurrency 15",
"build": "turbo build --filter=!doc",
"build:doc": "turbo build --filter=doc",
"clean": "turbo clean",
"test": "turbo test",
"format": "prettier --write .",
"coverage": "vitest run --coverage",
"release": "multi-semantic-release --ignore-private-packages=true --deps.bump=inherit",
"prepare": "husky install",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"lint:report": "eslint . --output-file eslint_report.json --format json",
"postinstall": "pnpm run build"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": ">= 16"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^18.16.7",
"@vitest/coverage-c8": "^0.33.0",
"esbuild": "^0.17.18",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"happy-dom": "^8.9.0",
"husky": "^8.0.3",
"multi-semantic-release": "^3.0.2",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.19.1",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-styles": "^4.0.0",
"sass": "^1.62.1",
"ts-node": "^10.9.1",
"turbo": "^2.0.9",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1",
"vitest": "^2.0.4"
}
}