-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
111 lines (111 loc) · 3.94 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": "@glrodasz/components",
"version": "2.13.1",
"description": "A components library to create apps from zero to production",
"private": false,
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/glrodasz/cero-components.git"
},
"engines": {
"node": ">=16.13.2",
"yarn": ">=1.22.17"
},
"scripts": {
"build:storybook": "build-storybook --no-dll",
"build:tokens": "node ./scripts/build-tokens",
"build": "run-s build:tokens build:storybook",
"build:docs": "yarn build:tokens && yarn build:storybook --docs --no-manager-cache",
"cc": "node ./scripts/create-component",
"commit": "cz",
"deploy:prod": "run-s build:docs deploy:vercel:prod",
"deploy:stag": "run-s build deploy:vercel:stag",
"deploy:vercel:prod": "vercel --prod",
"deploy:vercel:stag": "vercel",
"dev:storybook": "start-storybook -p 6006",
"dev:tokens": "watch 'yarn build:tokens' ./tokens",
"dev": "concurrently 'npm:dev:*'",
"dev:debug": "yarn dev:storybook --debug-webpack",
"lint:css:fix": "yarn lint:css:prettier:fix && yarn lint:css:stylelint:fix",
"lint:css:prettier:fix": "yarn lint:css:prettier --write",
"lint:css:prettier": "prettier '**/*.css' --list-different --ignore-path .gitignore",
"lint:css:stylelint:fix": "yarn lint:css:stylelint --fix",
"lint:css:stylelint": "stylelint '**/*.css' --ignore-path .gitignore",
"lint:css": "run-s lint:css:stylelint lint:css:prettier",
"lint:fix": "run-p lint:js:fix lint:json:fix lint:css:fix",
"lint:js:fix": "yarn lint:js --fix",
"lint:js": "eslint --cache --ignore-path .gitignore '**/*.js'",
"lint:json:fix": "yarn lint:json --write",
"lint:json": "prettier '**/*.json' --list-different --ignore-path .gitignore",
"lint": "run-p lint:js lint:json lint:css",
"test:coverage": "yarn test --coverage",
"test:coverage:html": "yarn test:coverage & open coverage/lcov-report/index.html",
"test:watch": "CONSOLE_LEVEL=debug yarn test --watch",
"test": "jest",
"prepare": "husky install"
},
"keywords": [
"react",
"components"
],
"author": "Guillermo Rodas <glrodasz@gmail.com>",
"license": "MIT",
"dependencies": {
"@glrodasz/storybook-tools-helpers": "0.0.3",
"@glrodasz/storybook-tools-styles": "0.0.5"
},
"devDependencies": {
"@babel/core": "7.21.4",
"@babel/preset-env": "7.21.4",
"@babel/preset-react": "7.18.6",
"@commitlint/cli": "17.5.1",
"@commitlint/config-conventional": "17.4.4",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@storybook/addon-actions": "6.5.9",
"@storybook/addon-essentials": "6.5.9",
"@storybook/addon-links": "6.5.9",
"@storybook/builder-webpack5": "6.5.9",
"@storybook/manager-webpack5": "6.5.9",
"@storybook/react": "6.5.9",
"@storybook/testing-react": "1.3.0",
"@svgr/webpack": "6.3.1",
"@testing-library/react": "13.3.0",
"babel-jest": "28.1.3",
"babel-loader": "8.2.5",
"chromatic": "6.7.1",
"commitizen": "4.3.0",
"concurrently": "7.3.0",
"cz-conventional-changelog": "3.3.0",
"enquirer": "2.3.6",
"eslint": "8.37.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-storybook": "0.6.11",
"glob": "8.0.3",
"husky": "8.0.3",
"identity-obj-proxy": "3.0.0",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"jest-specific-snapshot": "5.0.0",
"lint-staged": "13.2.1",
"minireset.css": "0.0.7",
"npm-run-all": "4.1.5",
"prettier": "2.8.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"react-test-renderer": "18.2.0",
"semantic-release": "21.0.1",
"stylelint": "14.9.1",
"stylelint-config-idiomatic-order": "8.1.0",
"stylelint-config-recommended": "8.0.0",
"watch": "1.0.2"
},
"peerDependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
}
}