-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
90 lines (90 loc) · 3.78 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
84
85
86
87
88
89
90
{
"name": "genesys-spark-components",
"version": "4.108.1",
"description": "Common webcomponents",
"license": "MIT",
"scripts": {
"build": "npm run build --workspaces --if-present && npm run create-dist-folder",
"commit": "git-cz",
"commitlint": "commitlint --from 81b354d83c18eb6ac0ca925b4694d43c09e588e8",
"copy.chart-components": "cp -R ./packages/genesys-spark-chart-components/dist ./dist/chart",
"create-dist-folder": "node ./scripts/create-dist-folder.js",
"create-manifest": "node ./scripts/create-manifest.js",
"current-version": "cross-replace \"echo $npm_package_version\"",
"dev": "npm start",
"dev.examples": "npm run dev --workspace=web-apps/genesys-spark-examples",
"dev.gsc": "npm run dev --workspace=packages/genesys-spark-components",
"dev.gscc": "npm run dev --workspace=packages/genesys-spark-chart-components",
"dev.spark": "npm run dev --workspace=packages/genesys-spark",
"eslint.root": "eslint . --fix",
"eslint.workspaces": "npm run eslint --workspaces --if-present",
"husky.commit-msg": "commitlint --edit",
"husky.pre-commit": "npm run lint-staged",
"lint": "npm run lint-all",
"lint-all": "npm-run-all \"lint-all.*\"",
"lint-all.root": "npm-run-all \"eslint.root\" \"prettier.root\" \"prettier-package-json.root\"",
"lint-all.workspaces": "npm run lint-all --workspaces --if-present",
"lint-staged": "npm-run-all \"lint-staged.*\"",
"lint-staged.root": "lint-staged",
"lint-staged.workspaces": "npm run lint-staged --workspaces --if-present",
"new-tokens-data": "npm run snapshot --workspace=packages/genesys-spark-tokens",
"playground.angular": "run-pty playground.angular.json",
"playground.angular.start": "cd ./playground/angular-v13 && npm install && npm start",
"playground.ember": "run-pty playground.ember.json",
"playground.ember.start": "cd ./playground/ember-3 && npm install && npm start",
"playground.knockout": "run-pty playground.knockout.json",
"playground.knockout.start": "cd ./playground/knockout-3 && npm install && npm start",
"playground.vue": "run-pty playground.vue.json",
"playground.vue.start": "cd ./playground/vue-3 && npm install && npm start",
"prepare": "husky",
"prettier-package-json.root": "prettier-package-json --write ./package.json",
"prettier-package-json.workspaces": "npm run prettier-package-json --workspaces --if-present",
"prettier.root": "prettier --log-level silent --ignore-unknown --write .",
"prettier.workspaces": "npm run prettier --workspaces --if-present",
"release": "standard-version",
"start": "run-pty start.json",
"test": "npm run test --workspaces --if-present",
"test.ci": "npm run test.ci --workspaces --if-present",
"version-sync": "npm run version-sync --workspaces --if-present"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"workspaces": [
"./packages/genesys-spark-tokens",
"./packages/genesys-spark",
"./packages/genesys-spark-components",
"./packages/genesys-spark-chart-components",
"./packages/*",
"./shared-configs/*",
"./web-apps/*"
],
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"commitizen": "^4.3.1",
"cross-replace": "^0.2.0",
"eslint": "^9.16.0",
"eslint-config-genesys-spark-components": "^0.0.1",
"git-cz": "^4.9.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"prettier-config-genesys-spark-components": "^0.0.1",
"run-pty": "^5.0.0",
"standard-version": "^9.5.0"
},
"prettier": "prettier-config-genesys-spark-components",
"standard-version": {
"skip": {
"tag": true
}
},
"volta": {
"node": "20.9.0"
}
}