forked from Decathlon/vitamin-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.99 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "vitamin-web",
"version": "0.0.0",
"private": true,
"description": "Decathlon Design System - Vitamin libraries for web applications",
"keywords": [
"design-system",
"ui-kit",
"libraries",
"vitamin"
],
"homepage": "https://github.com/Decathlon/vitamin-web",
"bugs": {
"url": "https://github.com/Decathlon/vitamin-web/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Decathlon/vitamin-web.git"
},
"license": "Apache-2.0",
"workspaces": [
"packages/sources/css",
"packages/sources/css/config/*",
"packages/sources/css/src/design-tokens",
"packages/sources/css/src/utilities",
"packages/sources/css/src/components/*",
"packages/sources/icons",
"packages/sources/web-components",
"packages/sources/vue",
"packages/sources/react",
"packages/sources/svelte",
"packages/showcases/*"
],
"scripts": {
"affected:build": "nx affected:build",
"affected:build-storybook": "nx affected --target=build-storybook",
"affected:dep-graph": "nx affected:dep-graph",
"affected:test": "nx affected:test",
"prebuild": "yarn lint:fix",
"build": "nx run-many --target=build --all --parallel",
"build-storybook": "nx run-many --target=build-storybook --all --parallel",
"dep-graph": "nx dep-graph",
"deploy-storybook": "storybook-to-ghpages --packages packages -o docs --monorepo-index-generator packages/showcases/core/scripts/index-generator.js",
"postinstall": "is-ci || husky install",
"lint": "yarn prettier && yarn stylelint",
"lint:fix": "yarn prettier:fix && yarn stylelint:fix",
"prepare": "yarn build && yarn test",
"prettier": "prettier .",
"prettier:fix": "prettier . --write",
"release": "lerna publish --no-verify-access --no-private --no-commit-hooks --yes",
"start": "nx run-many --target=start --all --parallel",
"start:css": "nx run-many --target=start --projects=@vtmn/showcase-css,@vtmn/css --parallel",
"start:icons": "nx run-many --target=start --projects=@vtmn/showcase-icons,@vtmn/icons --parallel",
"start:react": "nx run-many --target=start --projects=@vtmn/showcase-react,@vtmn/react --parallel",
"start:svelte": "nx run-many --target=start --projects=@vtmn/showcase-svelte,@vtmn/svelte --parallel",
"start:vue": "nx run-many --target=start --projects=@vtmn/showcase-vue,@vtmn/vue --parallel",
"start:web-components": "nx run-many --target=start --projects=@vtmn/showcase-web-components,@vtmn/web-components --parallel",
"stylelint": "stylelint packages/**/*.css",
"stylelint:fix": "yarn stylelint --fix",
"test": "nx run-many --target=test --all --parallel"
},
"lint-staged": {
"./**/package.json": [
"sort-package-json && nx run-many --target=sort-package-json --all --parallel"
],
"./packages/**/*.css": [
"yarn stylelint:fix"
],
"./packages/**/*.{json,js,jsx,ts,tsx,svelte}": [
"yarn prettier:fix"
]
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@nrwl/cli": "^12.7.1",
"@nrwl/nx-cloud": "^12.3.10",
"@nrwl/tao": "^12.7.1",
"@nrwl/workspace": "^12.7.1",
"@octokit/core": "^3.2.4",
"@storybook/storybook-deployer": "^2.8.10",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.2",
"husky": "^7.0.1",
"is-ci": "^3.0.0",
"lerna": "^4.0.0",
"lint-staged": "^11.1.0",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^2.4.0",
"shx": "^0.3.3",
"sort-package-json": "^1.52.0",
"typescript": "4.4.3"
},
"engines": {
"node": "^12 || ^14",
"npm": "please-use-yarn",
"yarn": ">= 1.19.1"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"storybook-deployer": {
"gitUsername": "Vitamin BOT",
"gitEmail": "[email protected]",
"commitMessage": "chore: deploy storybook"
},
"volta": {
"node": "14.17.5",
"yarn": "1.22.11"
}
}