-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathpackage.json
111 lines (111 loc) · 3.91 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
{
"name": "@vtmn/do-not-install-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": [
"packages/sources/assets",
"packages/sources/css",
"packages/sources/css/config/*",
"packages/sources/css/presets/*",
"packages/sources/css/src/design-tokens",
"packages/sources/css/src/utilities",
"packages/sources/css/src/components/**/*",
"packages/sources/icons",
"packages/sources/vue",
"packages/sources/react",
"packages/sources/svelte",
"packages/showcases/*"
]
},
"scripts": {
"prebuild": "yarn lint:fix && nx run-many --target=prebuild --all --parallel",
"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 && nx run-many --target=lint --projects=@vtmn/react,@vtmn/svelte --parallel",
"lint:fix": "yarn prettier:fix && yarn stylelint:fix && nx run-many --target=lint:fix --projects=@vtmn/react,@vtmn/svelte --parallel",
"prettier": "prettier --plugin-search-dir=. .",
"prettier:fix": "prettier --write --plugin-search-dir=. .",
"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",
"stylelint": "stylelint packages/**/*.css",
"stylelint:fix": "yarn stylelint --fix",
"test": "nx run-many --target=test --all --parallel"
},
"lint-staged": {
"./packages/**/*.css": [
"yarn stylelint:fix"
],
"./packages/**/*.{json,js,jsx,ts,tsx,svelte}": [
"yarn prettier:fix"
]
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@nrwl/cli": "^14.1.6",
"@nrwl/nx-cloud": "^14.0.3",
"@nrwl/tao": "^14.1.6",
"@nrwl/workspace": "^14.1.6",
"@storybook/storybook-deployer": "^2.8.10",
"cross-env": "^7.0.2",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"lerna": "^5.4.3",
"lint-staged": "^13.0.2",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^2.6.0",
"stylelint": "^14.0.0",
"stylelint-config-prettier": "^9.0.2",
"stylelint-config-standard": "^28.0.0",
"svelte": "^3.46.3",
"typescript": "^4.5.4"
},
"engines": {
"node": "^14 || ^15 || ^16 || ^17 || ^18",
"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": "16.13.2",
"yarn": "1.22.17"
},
"dependencies": {
"@types/node": "^18.0.0"
}
}