-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
83 lines (83 loc) · 2.76 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "kendo-themes.repo",
"version": "0.0.0",
"private": true,
"workspaces": [
"./packages/html",
"./packages/core",
"./packages/default",
"./packages/bootstrap",
"./packages/classic",
"./packages/material",
"./packages/fluent",
"./packages/utils"
],
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@commitlint/core": "^19.0.3",
"@eslint/js": "^9.6.0",
"@progress/kendo-e2e": "^4.0.0",
"@types/node": "^22.1.0",
"esbuild": "^0.24.0",
"eslint": "^9.6.0",
"glob": "^11.0.0",
"gulp": "^5.0.0",
"http-server": "^14.1.1",
"husky": "^9.0.10",
"lerna": "^8.0.0",
"lint-staged": "^15.0.2",
"nunjucks": "^3.2.3",
"sass": "1.80.5",
"sass-build": "^1.1.6",
"sass-embedded": "1.80.5",
"sassdoc": "^2.7.4",
"semver": "^7.3.7",
"stylelint": "^16.8.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-scss": "^6.5.0",
"typescript": "^5.0.3",
"typescript-eslint": "^8.0.0"
},
"peerDependencies": {
"sass": "^1.63.6",
"sass-build": "^1.1.6",
"sass-embedded": "^1.63.6"
},
"scripts": {
"prepare": "husky",
"start": "node ./scripts/start-dev-server.js",
"clean": "find . -name \"node_modules\" -type d -prune | xargs rm -rf",
"clean:dist": "find ./packages -name \"dist\" -type d -prune -maxdepth 2 | xargs rm -rf",
"clean:tests": "node ./scripts/cleanup-test-results.js",
"dist:all": "gulp dist:all",
"dist:swatches": "gulp dist:swatches",
"sass": "npm run dist:all && npm run sass -ws --if-present",
"sass:swatches": "npm run sass:swatches -ws --if-present",
"sass:standalone": "npm run sass:standalone -ws --if-present",
"build": "npm run sass && npm run build:scripts",
"build:scripts": "npm run build --prefix packages/html",
"build:tests": "npm run build:tests --prefix packages/html",
"eslint": "eslint",
"check-types": "npm run check-types --prefix packages/html",
"stylelint": "stylelint \"**/*.scss\"",
"lint": "npm run eslint && npm run stylelint",
"lint-staged": "lint-staged --verbose",
"docs": "npm run docs -ws --if-present",
"docs:check": "npm run docs -ws --if-present -- git diff --exit-code --quiet -- docs/",
"render-test-pages": "node ./scripts/render-test-pages.mjs",
"create-screenshots": "./build/create-screenshots.sh",
"embed-assets": "gulp assets",
"create-component": "gulp create-component",
"test-contrast": "node ./scripts/test-contrast.mjs",
"test:integrations": "npm run build --prefix integrations"
},
"engines": {
"node": "^20"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs}": "eslint",
"*.{css,scss}": "stylelint"
}
}