-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
129 lines (129 loc) · 5.18 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "nimbus-design-system",
"version": "0.0.0",
"description": "Nimbus is the open source design system created by the Nuvemshop design team so that together we can leverage more stories every day, with simplicity, accessibility, consistency and performance.",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"packages/*/*",
"packages/*/*/atomic/*",
"packages/*/*/composite/*"
]
},
"scripts": {
"build": "yarn build:packages",
"build:packages": "yarn build:tokens && yarn build:icons && yarn build:components && babel-node -x .ts ./.scripts/build-packages",
"build:components": "babel-node -x .ts ./.scripts/build-components",
"build:docs": "babel-node -x .ts ./.scripts/json-documentation",
"build:icons": "yarn workspace @nimbus-ds/icons build",
"build:tokens": "yarn workspace @nimbus-ds/tokens build",
"build:storybook": "storybook build -o .build-storybook",
"bump:check": "yarn version check",
"bump:next": "yarn version apply --all --prerelease",
"bump:stable": "yarn version apply --all",
"clean": "yarn workspaces foreach -pv -pt --exclude nimbus-design-system run clean",
"lint": "eslint packages --ext .jsx,.js,.ts,.tsx --quiet",
"lint:fix": "yarn lint --fix",
"pre-commit": "lint-staged",
"pre-push": "yarn test:coverage && yarn lint && yarn types:check && yarn bump:check",
"prepare-husky": "husky install",
"publish:next": "yarn bump:check && yarn bump:next && npm run build && yarn publish:npm:next",
"publish:stable": "npm run build && yarn bump:stable && yarn publish:npm:stable",
"publish:npm:next": "yarn workspaces foreach -pv -pt --exclude nimbus-design-system --exclude nimbus-helper npm publish --tolerate-republish --access public --tag next",
"publish:npm:stable": "yarn workspaces foreach -pv -pt --exclude nimbus-design-system --exclude nimbus-helper npm publish --tolerate-republish --access public",
"reset": "yarn clean && rm -rf node_modules .yarn/cache",
"storybook": "storybook dev -p 6006",
"start:dev": "yarn storybook",
"test": "jest --passWithNoTests --no-cache --runInBand --watchAll=false",
"test:ci": "yarn types:check && jest --ci --coverage",
"test:coverage": "yarn test --coverage",
"test:staged": "yarn test --findRelatedTests",
"test:watch": "yarn test --watch",
"types:check": "tsc --skipLibCheck --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TiendaNube/nimbus-design-system.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/TiendaNube/nimbus-design-system/issues"
},
"homepage": "https://github.com/TiendaNube/nimbus-design-system#readme",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/node": "^7.20.7",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@jest/types": "^28.1.3",
"@storybook/addon-essentials": "^7.6.4",
"@storybook/addon-interactions": "^7.6.4",
"@storybook/addon-links": "^7.6.4",
"@storybook/addon-mdx-gfm": "^7.6.4",
"@storybook/blocks": "^7.6.4",
"@storybook/preview-api": "^7.6.4",
"@storybook/react": "^7.6.4",
"@storybook/react-webpack5": "^7.6.4",
"@storybook/testing-library": "^0.2.2",
"@svgr/webpack": "^6.5.1",
"@testing-library/react": "^13.3.0",
"@tiendanube/eslint-config": "^0.3.2",
"@types/jest": "28.1.6",
"@types/node": "^18.11.13",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"@vanilla-extract/babel-plugin": "^1.1.7",
"@vanilla-extract/webpack-plugin": "^2.3.1",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.5",
"babel-plugin-module-resolver": "^5.0.0",
"child_process": "^1.0.2",
"dts-bundle-generator": "^7.1.0",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.1",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-mdx": "^2.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.13.0",
"eslint-plugin-spellcheck": "^0.0.19",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-testing-library": "^5.5.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-svg-transformer": "^1.0.0",
"jsdom": "^20.0.0",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "^2.7.2",
"prettier": "^2.7.1",
"storybook": "^7.6.4",
"storybook-dark-mode": "^3.0.3",
"ts-jest": "^28.0.7",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"turbo": "^1.10.16",
"typescript": "^4.7.4",
"webpack-cli": "^5.0.1"
},
"engines": {
"node": ">=14.17 <=16.x",
"yarn": ">=3.2.0"
},
"packageManager": "yarn@3.2.2"
}